/
/

How to Add or Remove Open with “Browse apps in the Microsoft Store” in Windows 11

by Andrew Gono, IT Technical Writer
How to Add or Remove Open with Browse apps in the Microsoft Store in Windows 11 blog banner image

The “Open with” context menu item lets users browse apps in the Microsoft Store for other compatible tools. While additional options can be beneficial, standardizing apps strengthens your security policy while removing a step from complex workflows.

This article explores advanced methods for turning the “Browse apps in the Microsoft Store” on or off, covers important questions, and lists the best deployment strategies.

Control when users look for an app in the Microsoft Store

These processes involve advanced tools that can modify important computer settings. Be mindful of your company’s technical constraints, scope, and contingencies when selecting a method below.

📌 Prerequisites:

  • Windows 11 operating system
  • Administrator privileges (For registry and GPO changes)

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Registry Editor
Method 2: Command Prompt
Method 3: PowerShell
Method 4: Local Group Policy
Method 5: .reg file

Method 1: Using Registry Editor

Manage in-context menu items within a workstation by editing its registry.

⚠️ Important: This method only works on older builds. If your device is operating on Windows 11 build 25206 or later, these methods won’t work.

📌 Use Cases: Manually testing or applying per-user or system-wide UI changes.

Steps:

  1. Press Win + R, type regedit, and press Ctrl + Shift + Enter.
  2. Navigate to: HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer
  3. Look for the NoUseStoreOpenWith key.
    • If you don’t see it, you can enable the “Browse apps in Microsoft Store” submenu by manually adding the key:
      1. Right-click Open With.
      2. Select New > Key
      3. Name it NoUseStoreOpenWith
      4. Press OK.Registry Editor, add new key aand name it NoUseStoreOpenWith
  4. To disable the Microsoft Store lookup, delete NoUseStoreOpenWith.
  5. Close the Registry Editor.
  6. Restart Explorer to apply your changes.
  7. To verify, right-click a file to confirm the submenu update.
    • If your changes aren’t reflecting, restart Explorer or log out and back in.

Method 2: Using Command Prompt

Apply registry changes through a lightweight command-line shell found on any Windows 11 edition.

⚠️ Important: This method only works on older builds. If your device is operating on Windows 11 build 25206 or later, these methods won’t work.

📌 Use Cases: Quick scripted changes or local batch file deployments.

Steps:

  1. Press Win + R, type cmd, and press Ctrl + Shift + Enter.
  2. To disable the “Open with” app store option, run the following:
    reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer” /v NoUseStoreOpenWith /t REG_DWORD /d 1 /f
  3. For per-user deactivation, run the following:
    reg add “HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer” /v NoUseStoreOpenWith /t REG_DWORD /d 1 /f

    ⚠️ Important: This might not be respected by all builds.

  4. To enable the “Look for app in store” submenu, run the following:
    reg delete “HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer” /v NoUseStoreOpenWith /f
  5. For per-user deactivation, run the following:
    reg delete “HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer” /v NoUseStoreOpenWith /f

    ⚠️ Important: This might not be respected by all builds.

  6. Restart Explorer to apply your changes.

Method 3: Using PowerShell

Leverage PowerShell’s integration with deployment tools to easily send out patches within your organization.

⚠️ Important: This method only works on older builds. If your device is operating on Windows 11 build 25206, these methods won’t work.

📌 Use Cases: Scripted automation across your enterprise.

Steps;

  1. Press Win + R, type powershell, and press Ctrl + Shift + Enter.
  2. To disable Microsoft Store search for an app in the store, run the following:
    Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer” -Name “NoUseStoreOpenWith” -Value 1 -Type DWord
  3. For per-user deactivation, run the following:
    Set-ItemProperty -Path “HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer” -Name “NoUseStoreOpenWith” -Value 1 -Type DWord

    ⚠️ Important: This might not be respected by all builds.

  4. To enable the “Browse apps in the Microsoft Store” submenu option:
    Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\Explorer” -Name “NoUseStoreOpenWith” -Value 0 -Type DWord
  5. For per-user activation, run the following:
    Set-ItemProperty -Path “HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer” -Name “NoUseStoreOpenWith” -Value 0 -Type DWord

    ⚠️ Important: This might not be respected by all builds.

  6. Verify removal or restoration by right-clicking a file.
  7. Restart Explorer to apply your changes.

Method 4: Using Local Group Policy

📌 Use Cases: Restrict “Open with” submenu accessibility on standalone workstations.

📌 Prerequisites: Windows 11 Pro and Enterprise editions

Steps:

  1. Press Win + R, type gpedit.msc, and press Ctrl + Shift + Enter.
  2. Navigate to: Computer Configuration > Administrative Templates > System > Internet Communication Management > Internet Communication settings
  3.  In the right pane, double-click Turn off access to the Store.
  4. To allow users to browse apps in the Microsoft Store:
    • Click Not configured.
    • Click Apply, then OK.
  5. To disable the “Open with” app store option:
    • Click Enabled.
    • Click Apply, then OK.

Method 5: Using a .reg file

⚠️ Important: This method only works on older builds. If your device is operating on Windows 11 build 25206 or later, these methods won’t work.

📌 Use Cases: Deploy, create backups, or distribute registry changes via email, USB, and logon scripts.

Steps:

  1. Press Win + S, type Notepad, and press Enter.
  2. To remove a user’s ability to browse apps in the Microsoft Store from the “Open with” submenu, paste the following:
    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]

    “NoUseStoreOpenWith”=-

    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]

    “NoUseStoreOpenWith”=dword:00000001

  3. To enable the “Look for apps in the store” function, paste the following:
    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]

    “NoUseStoreOpenWith”=-

    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]

    “NoUseStoreOpenWith”=-

  4. Save it as .reg and name it appropriately (e.g., “SearchMSStoreOption_ON.reg”).
  5. Double-click on the file to merge it with the device’s registry.
  6. When prompted by User Account Control (UAC), click Yes, then OK.

⚠️ Things to look out for

RisksPotential ConsequencesReversals
The wrong registry key was deletedUnpredictable/broken context menuRestore via .reg backup file
Overwriting sanctioned file associations with PowerShellIncorrect app launchesRun Remove-Item or Set-ItemProperty to correct
Domain GPOs conflictErratic context submenuReset policy settings or use the Group Policy Editor to revert changes

🛑 | Standardize extension-specific apps for consistent stability.

Read NinjaOne’s guide about changing file associations here.

Important considerations for “Browse apps in Microsoft Store” functionality

Use these key points to optimize deployments and troubleshoot any potential roadblocks involving the “Open with” submenu.

System-wide changes

Remember that your registry changes cover all users who log into a specific device. This is because the key that you modify exists in the HKEY_CLASSES_ROOT hive, which stores file extension association data.

No ADMX

As of this writing, no documented ADMX setting exists for the “Browse apps in the Microsoft Store” context menu option. As such, Microsoft highly recommends using Group Policy Preferences.

Stability is preserved

StoreLookup isn’t as consequential as most registry keys, and deleting it only removes the store link from your context menu.

Refresh Explorer for quicker changes

If your changes weren’t applied immediately, reboot Explorer or log back in. Explorer controls GUI processes (including the “Open with” submenu), and refreshing it will have it check for any flags that were recently added or removed.

Login scripts

Deploy your changes via startup or login scripts for a hands-free experience that helps eliminate IT heartburn.

Manage “Browse apps in the Microsoft Store” to streamline the user experience

Adding or removing the “Browse apps in the Microsoft Store” option involves registry changes that can be scripted for automated deployment or GPO rollouts to domain-joined workstations.

Always exercise caution when modifying low-level settings, and consider recruiting best-of-class monitoring software that allows IT pros to manage multiple endpoints safely and remotely.

Related topics:

You might also like

Ready to simplify the hardest parts of IT?