Enable the “Remove Default Microsoft Store packages from the system” setting to stop Windows 11 from installing bundled Store apps when new user profiles are created. This policy is built into 24H2 and 25H2 and removes selected Microsoft Store inbox apps at first sign-in for new accounts. It does not touch existing profiles and does not remove third‑party OEM software.


What this policy does and what to expect

  • Scope: Applies when a new user profile is created. Existing users are unaffected.
  • Coverage: Targets Microsoft’s built‑in Store apps. It does not remove OEM/promotional software shipped by PC vendors.
  • Editions: Group Policy is available on Windows 11 Pro, Enterprise, and Education. Windows 11 Home can use the Registry method (results may vary).
  • Timing: Removal runs at first sign‑in for a new user. Some removed apps may leave Start menu shortcuts until the user signs out and back in.
  • Diagnostics: App removal is logged under the Microsoft‑Windows‑AppXDeploymentServer Operational log (e.g., summary Event ID 327; failures may show as 698).

Step 1: Open the Local Group Policy Editor. Press Start, type gpedit, and select “Edit group policy.”

Step 2: Navigate to Computer Configuration > Administrative Templates > Windows Components > App Package Deployment.

Step 3: Open “Remove Default Microsoft Store packages from the system.” Set it to Enabled.

Step 4: In Options, select the built‑in apps you want removed for new accounts. Click Apply, then OK.

Step 5: Create a new local or Azure AD user to validate. Sign in with that new user and confirm the selected apps are absent. If you still see “dead” icons, sign out and sign in again to refresh the Start menu.


Method 2 — Configure the Registry (works on Pro, may work on Home)

Warning: Editing the registry can cause system issues if done incorrectly. Back up the registry or take a system backup first.

Step 1: Open the Registry Editor. Press Start, type regedit, and launch it.

Step 2: Go to HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx. If the Appx key doesn’t exist, create it.

Step 3: Under Appx, create a key named RemoveDefaultMicrosoftStorePackages.

Step 4: In that key, create a DWORD value named Enabled and set it to 1.

Step 5: For each app you want removed for new users, create a subkey under RemoveDefaultMicrosoftStorePackages named exactly as the app’s package family name (examples below).

Step 6: In each app subkey, create a DWORD named RemovePackage and set it to 1.

Step 7: Create a new test user account and sign in to verify the apps are removed. If Start menu icons linger, sign out and sign back in.

Common package family names you can target:

  • Microsoft.WindowsFeedbackHub_8wekyb3d8bbwe.
  • Microsoft.Copilot_8wekyb3d8bbwe.
  • Clipchamp.Clipchamp_yxz26nhyzhsrt.
  • Microsoft.BingNews_8wekyb3d8bbwe.
  • Microsoft.Windows.Photos_8wekyb3d8bbwe.
  • Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe.
  • Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe.
  • MSTeams_8wekyb3d8bbwe.
  • Microsoft.Todos_8wekyb3d8bbwe.
  • Microsoft.BingWeather_8wekyb3d8bbwe.
  • Microsoft.OutlookForWindows_8wekyb3d8bbwe.
  • Microsoft.Paint_8wekyb3d8bbwe.
  • MicrosoftCorporationII.QuickAssist_8wekyb3d8bbwe.
  • Microsoft.ScreenSketch_8wekyb3d8bbwe (Snipping Tool).
  • Microsoft.WindowsCalculator_8wekyb3d8bbwe.
  • Microsoft.WindowsCamera_8wekyb3d8bbwe.
  • Microsoft.ZuneMusic_8wekyb3d8bbwe (Media Player).
  • Microsoft.WindowsNotepad_8wekyb3d8bbwe.
  • Microsoft.WindowsSoundRecorder_8wekyb3d8bbwe.
  • Microsoft.WindowsTerminal_8wekyb3d8bbwe.
  • Microsoft.GamingApp_8wekyb3d8bbwe (Xbox).
  • Microsoft.Xbox.TCUI_8wekyb3d8bbwe.
  • Microsoft.XboxIdentityProvider_8wekyb3d8bbwe.
  • Microsoft.XboxSpeechToTextOverlay_8wekyb3d8bbwe.

Optional — Deploy via Intune/MDM using Policy CSP

Organizations can deploy this setting at scale via the Policy CSP under the ApplicationManagement node. Use a device configuration profile (custom OMA‑URI) to set ./Device/Vendor/MSFT/Policy/Config/ApplicationManagement/RemoveDefaultMicrosoftStorePackages. See Microsoft’s Policy CSP reference for details on ApplicationManagement nodes: Policy CSP - ApplicationManagement.

Step 1: Create an Intune device configuration profile (Windows 10 and later) and choose a Custom profile type.

Step 2: Add an OMA‑URI setting targeting the path above and supply the data payload that enables the policy and lists the app IDs to remove.

Step 3: Assign to devices so it applies before first user sign‑in on new deployments.


Clean up Start menu “stubs” (optional)

After removal, some Start menu entries may remain as non‑functional shortcuts until a user logoff/login. You can proactively reduce these “ghost” entries with a cloud content policy and a one‑time Start menu reset for the current user.

Step 1: In Local Group Policy Editor, go to Computer Configuration > Administrative Templates > Windows Components > Cloud Content and enable “Turn off cloud optimized content.”

Step 2: For the current user only, delete the local Start menu state folder: C:\Users\<user>\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState. Restart or sign out and back in.


Example: one‑time batch script to configure Registry removal

Run elevated. Edit the list to suit your environment.

@echo off
:: Enable policy base key
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages" /v Enabled /t REG_DWORD /d 1 /f

:: Add apps to remove for new users (package family names)
for %%A in (
"Clipchamp.Clipchamp_yxz26nhyzhsrt"
"Microsoft.BingNews_8wekyb3d8bbwe"
"Microsoft.BingWeather_8wekyb3d8bbwe"
"Microsoft.Copilot_8wekyb3d8bbwe"
"Microsoft.GamingApp_8wekyb3d8bbwe"
"Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe"
"Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe"
"Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe"
"Microsoft.OutlookForWindows_8wekyb3d8bbwe"
"Microsoft.Paint_8wekyb3d8bbwe"
"Microsoft.ScreenSketch_8wekyb3d8bbwe"
"Microsoft.Todos_8wekyb3d8bbwe"
"Microsoft.Windows.Photos_8wekyb3d8bbwe"
"Microsoft.WindowsCalculator_8wekyb3d8bbwe"
"Microsoft.WindowsCamera_8wekyb3d8bbwe"
"Microsoft.WindowsFeedbackHub_8wekyb3d8bbwe"
"Microsoft.WindowsNotepad_8wekyb3d8bbwe"
"Microsoft.WindowsSoundRecorder_8wekyb3d8bbwe"
"Microsoft.WindowsTerminal_8wekyb3d8bbwe"
"Microsoft.Xbox.TCUI_8wekyb3d8bbwe"
"Microsoft.XboxIdentityProvider_8wekyb3d8bbwe"
"Microsoft.XboxSpeechToTextOverlay_8wekyb3d8bbwe"
"Microsoft.ZuneMusic_8wekyb3d8bbwe"
"MicrosoftCorporationII.QuickAssist_8wekyb3d8bbwe"
"MSTeams_8wekyb3d8bbwe"
) do (
  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages\%%~A" /v RemovePackage /t REG_DWORD /d 1 /f
)

echo Policy configured. New user profiles will receive app removal on first sign-in.
pause

Limitations and tips

  • This feature removes Microsoft inbox apps; it will not uninstall OEM utilities (e.g., Dell/HP tooling). Use deployment scripts, winget, or ask your vendor for a clean “vanilla” image to address OEM software.
  • For existing users, consider targeted uninstalls via management tools or migrate users to fresh profiles to receive the policy.
  • If removal events fail, review the AppXDeploymentServer Operational log for detailed error codes and confirm package family names are exact.

With Group Policy or the Registry configured ahead of first sign‑in, new Windows 11 profiles start without the selected default apps, cutting first‑login noise and reducing follow‑up cleanup.