How to Remove Bloatware from Windows 11: A Comprehensive Guide
If you’re looking to streamline your Windows 11 experience, particularly on Pro, Enterprise, or Education editions, recent updates have introduced a practical solution. Administrators can utilize a Group Policy called “Remove Default Microsoft Store packages from the system” to effectively debloat new user accounts. On the other hand, if you’re utilizing Windows 11 Home, there’s still a way to eliminate bloatware using the Registry Editor, though effectiveness might vary.
It’s crucial to understand that these methods focus on new accounts and will not uninstall any pre-existing applications tied to current users.
Windows 11 versions 25H2 and 24H2 present advancements that allow for significant bloatware removal. However, you will not find this option during the initial installation process or within the typical Settings app. Instead, this new policy is tailored for Windows 11’s Pro, Education, and Enterprise users, enabling network administrators to block the installation of built-in Microsoft Store applications during new account setups.
Enabling the Group Policy for Bloatware Removal
To effectively reduce bloatware on Windows 11, the following steps illustrate how to manipulate the Group Policy:
- Open Start.
- Enter “gpedit”in the search bar and select the first search result to access the Local Group Policy Editor.
- Navigate to:
Computer Configuration > Administrative Templates > Windows Components > App Package Deployment - Double-click on “Remove Default Microsoft Store packages from the system.”
- Select the “Enabled”option.
- Under the “Options” section, check all applications you wish to uninstall.
- Click “Apply.”
- Finish by clicking “OK.”
After following these steps, the modifications will be in effect, ensuring that any new user accounts will automatically remove the specified built-in applications, leading to a more streamlined operating environment.
Stay updated with the latest guides and tutorials by subscribing to my newsletter.
Subscribe
Using the Registry Editor to Debloat Windows 11
For those using Windows 11 Home, here’s how to utilize the Registry Editor to remove bloatware:
- Open Start.
- Type “regedit”in the search field and click the first result to launch the Registry Editor.
- Navigate to:
HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx - Right-click the Appx key, select New, then click Key.
- Name the key as RemoveDefaultMicrosoftStorePackages and press Enter.
- Create a new DWORD (32-bit) Value under the new key and name it Enabled.
- Right-click the Enabled key and select Modify.
- Change the value from 0 to 1.
- Create another new key under RemoveDefaultMicrosoftStorePackages for each application you want to remove.
- Name each key as the package name, for example: “Clipchamp. Clipchamp_yxz26nhyzhsrt” to remove the Clipchamp app.
- Repeat the DWORD (32-bit) value creation process for the RenamePackage and set its value to 1.
After completing these steps, when a new account is created, the system will uninstall the designated applications specified in the RemoveDefaultMicrosoftStorePackages key. Remember that while the Registry edits may work on Windows 11 Home, results can vary.
Key Applications for Removal
Below is a list of Microsoft applications that can be removed through the Registry:
- Feedback Hub: Microsoft. WindowsFeedbackHub_8wekyb3d8bbwe
- Microsoft Clipchamp: Clipchamp. Clipchamp_yxz26nhyzhsrt
- Microsoft Teams: MSTeams_8wekyb3d8bbwe
- Windows Media Player: Microsoft. ZuneMusic_8wekyb3d8bbwe
- Microsoft Photos: Microsoft. Windows. Photos_8wekyb3d8bbwe
If you’re interested in automating this process, you can create a script to debloat Windows 11 in bulk. Simply copy the code below into Notepad and save the file as “debloat_windows11.bat” :
@echo off :: Enable policy reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages"/v Enabled /t REG_DWORD /d 1 /f
:: Remove default apps for %%A in ( “Clipchamp. Clipchamp_yxz26nhyzhsrt” “Microsoft. WindowsFeedbackHub_8wekyb3d8bbwe” “Microsoft. BingWeather_8wekyb3d8bbwe” ) do ( reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx\RemoveDefaultMicrosoftStorePackages\%%~A”/v RemovePackage /t REG_DWORD /d 1 /f ) echo All registry entries have been applied successfully.pause
Run this batch file with administrator privileges to apply the desired changes.
It’s essential to understand that this policy primarily targets Microsoft applications and does not include promotional software that comes bundled with new devices. Furthermore, the policy will only activate during the creation of new accounts, leaving existing ones unaffected.
This new feature, while beneficial, indicates a demand for broader accessibility—ideally, both Pro and Home editions would have such options in the primary Settings menu, along with choices available during the Out-of-Box Experience (OOBE) for prospective users.
Leave a Reply