Windows 11 often comes with a collection of default Microsoft Store apps such as Clipchamp, Xbox, Weather, and Feedback Hub. While some users may find them useful, IT administrators and power users frequently consider them bloatware.
Starting with Windows 11 24H2 and 25H2, Microsoft introduced a built-in policy called “Remove Default Microsoft Store packages from the system”. This setting allows administrators to automatically block selected Store apps from being installed when new user profiles are created — keeping systems clean right from first login.
This guide covers everything you need to know about the feature, including how it works, its limitations, and step-by-step methods using Group Policy, Registry tweaks, Intune/MDM deployment, and scripts.
What the Policy Does and Doesn’t Do
- Scope: Only affects new user accounts. Existing profiles remain unchanged.
- Coverage: Targets Microsoft inbox Store apps only. It does not uninstall third-party OEM utilities or promotional software preloaded by PC vendors.
- Supported Editions:
- Group Policy method → Windows 11 Pro, Enterprise, and Education.
- Registry method → Pro and Home (results may vary).
- Timing: Removal takes place at first sign-in for new accounts. Some apps may leave Start menu shortcuts until the user signs out and back in.
- Diagnostics: Events are logged under Microsoft-Windows-AppXDeploymentServer → Operational log. Look for Event ID 327 (summary) or 698 (failure).
Method 1 — Remove Apps via Group Policy (Recommended)
- Open the Local Group Policy Editor (
gpedit.msc). - Navigate to:
Computer Configuration > Administrative Templates > Windows Components > App Package Deployment. - Double-click “Remove Default Microsoft Store packages from the system.”
- Set it to Enabled.
- In Options, select which built-in apps you want removed.
- Click Apply → OK.
- Create a new test user (local or Azure AD). At first login, verify that the chosen apps are gone. If ghost icons remain, log out and sign back in.
Method 2 — Remove Apps via Registry (Works on Home Edition)
⚠️ Warning: Incorrect registry edits can break your system. Always back up your registry or system before making changes.
- Open the Registry Editor (
regedit). - Go to:
HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx
(Create theAppxkey if it doesn’t exist). - Inside
Appx, create a new key:RemoveDefaultMicrosoftStorePackages - In that key, create a DWORD (32-bit) Value named Enabled, set value to
1. - For each app you want removed:
- Create a subkey named exactly as the package family name.
- Inside it, create a DWORD called RemovePackage, set value to
1.
- Create a new test user profile and log in.
- If leftover Start menu icons remain, sign out and back in.
Common Package Family Names
Here are some frequently removed default apps:
Microsoft.WindowsFeedbackHub_8wekyb3d8bbweMicrosoft.Copilot_8wekyb3d8bbweClipchamp.Clipchamp_yxz26nhyzhsrtMicrosoft.BingNews_8wekyb3d8bbweMicrosoft.Windows.Photos_8wekyb3d8bbweMicrosoft.MicrosoftSolitaireCollection_8wekyb3d8bbweMSTeams_8wekyb3d8bbweMicrosoft.WindowsCalculator_8wekyb3d8bbweMicrosoft.WindowsTerminal_8wekyb3d8bbweMicrosoft.GamingApp_8wekyb3d8bbwe(Xbox)
Method 3 — Deploy via Intune/MDM (For Organizations)
Enterprises can roll out this setting at scale using Policy CSP under the ApplicationManagement node.
- In Intune, create a new Device Configuration Profile (Windows 10 and later → Custom).
- Add an OMA-URI:
./Device/Vendor/MSFT/Policy/Config/ApplicationManagement/RemoveDefaultMicrosoftStorePackages - Supply a payload that enables the policy and lists app IDs.
- Assign the profile to devices. The apps will be blocked from installation at first sign-in.
Cleaning Up Ghost Start Menu Shortcuts
Even after removal, some non-functional shortcuts (“stubs”) may appear until the Start menu refreshes.
Option 1 — Group Policy
- Go to Computer Configuration > Administrative Templates > Windows Components > Cloud Content.
- Enable “Turn off cloud optimized content.”
Option 2 — Manual Cleanup
Delete the Start menu state folder for the current user:
C:\Users\<username>\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState
Then restart or log out/in to refresh.
Example Batch Script (Registry Deployment)
Run this script with administrative privileges. Modify the app list as needed:
@echo off
:: Enable policy
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages" /v Enabled /t REG_DWORD /d 1 /f
:: Remove selected apps
for %%A in (
"Clipchamp.Clipchamp_yxz26nhyzhsrt"
"Microsoft.BingNews_8wekyb3d8bbwe"
"Microsoft.BingWeather_8wekyb3d8bbwe"
"Microsoft.Copilot_8wekyb3d8bbwe"
"Microsoft.GamingApp_8wekyb3d8bbwe"
"Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe"
"Microsoft.OutlookForWindows_8wekyb3d8bbwe"
"Microsoft.Paint_8wekyb3d8bbwe"
"Microsoft.Windows.Photos_8wekyb3d8bbwe"
"Microsoft.WindowsCalculator_8wekyb3d8bbwe"
"Microsoft.WindowsTerminal_8wekyb3d8bbwe"
"MSTeams_8wekyb3d8bbwe"
) do (
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages\%%~A" /v RemovePackage /t REG_DWORD /d 1 /f
)
echo Policy applied. Apps will be removed for new user profiles at first sign-in.
pause
Limitations and Best Practices
- This feature only removes Microsoft Store inbox apps — not OEM software from HP, Dell, Lenovo, etc. For OEM cleanup, request a vanilla image or use custom scripts.
- Existing user accounts won’t be affected. To apply the change, either remove apps manually or migrate users to fresh profiles.
- If removal fails, double-check package family names and review error logs in Event Viewer → AppXDeploymentServer (Operational).
Conclusion
With the “Remove Default Microsoft Store packages” policy, Windows 11 administrators finally have a reliable way to control app clutter on new profiles. Whether you use Group Policy, Registry edits, or Intune deployment, the result is a cleaner, faster, and more consistent environment for new users.
By enabling this setting before rollout, you can eliminate unnecessary apps, cut down on first-login noise, and reduce post-deployment cleanup tasks — making Windows 11 easier to manage both at home and in enterprise environments.
And if you'd like to go a step further in supporting us, you can treat us to a virtual coffee ☕️. Thank you for your support ❤️!
We do not support or promote any form of piracy, copyright infringement, or illegal use of software, video content, or digital resources.
Any mention of third-party sites, tools, or platforms is purely for informational purposes. It is the responsibility of each reader to comply with the laws in their country, as well as the terms of use of the services mentioned.
We strongly encourage the use of legal, open-source, or official solutions in a responsible manner.


Comments