How to Remove Bloatware from Windows 11
New Windows 11 installations often come pre-loaded with unnecessary third-party applications, trial software, and sponsored shortcuts commonly known as bloatware. This guide covers the most effective methods to identify and completely remove these unwanted programs, ranging from standard uninstallation via the Settings menu and Start menu to advanced removal using Windows PowerShell commands and clean installation tweaks.
1. Uninstall via the Start Menu or Settings
The simplest way to remove basic bloatware (such as pre-installed games and social media apps) is through standard Windows controls.
Using the Start Menu
- Open the Start Menu.
- Click All apps in the top right corner.
- Locate the unwanted app, right-click its icon, and select Uninstall.
- Confirm the prompt if required.
Using Windows Settings
- Press
Win + Ito open Settings. - Navigate to Apps > Installed apps.
- Scroll through the list or use the search bar to find the bloatware.
- Click the three-dot menu (…) next to the application and select Uninstall.
2. Remove Built-in Apps Using Windows PowerShell
Certain system-level applications cannot be uninstalled through the standard Settings menu. Windows PowerShell allows you to remove them using built-in package manager commands.
Right-click the Start button and select Terminal (Admin) or PowerShell (Admin).
To view all installed packages for your user account, enter:
Get-AppxPackage | Select Name, PackageFullNameTo remove a specific app, use the following command structure:
Get-AppxPackage *AppName* | Remove-AppxPackage
Common PowerShell Removal Commands
Xbox Services:
Get-AppxPackage *xboxapp* | Remove-AppxPackageMicrosoft News/Weather:
Get-AppxPackage *bing* | Remove-AppxPackageSolitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackageFeedback Hub:
Get-AppxPackage *windowsfeedbackhub* | Remove-AppxPackage
To remove an app from all future user accounts on the PC, append
-AllUsers:Get-AppxPackage -AllUsers *AppName* | Remove-AppxPackage Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*AppName*" | Remove-AppxProvisionedPackage -Online
3. Prevent Bloatware During a Clean Windows 11 Install
If you are performing a fresh installation from a USB drive, you can prevent third-party promotional apps from downloading automatically.
- Start the Windows 11 setup wizard.
- When prompted to select your Time and currency format, choose English (World) or English (Europe) instead of your specific region.
- Complete the installation.
- Because the Microsoft Store cannot identify region-specific promotional software configurations for the “World” region, it will bypass downloading third-party bloatware.
- After setup is complete, open Settings > Time & language > Language & region and change your region and formats back to your actual location.
4. Disable Personalized App Suggestions and Ads
To prevent Windows 11 from silently re-downloading suggested apps or displaying promotional items in your Start menu:
- Open Settings (
Win + I). - Go to Personalization > Start.
- Toggle off Show recommendations for tips, shortcuts, new apps, and more.
- Go to Privacy & security > General.
- Toggle off Let apps show me personalized ads using my advertising ID and Show me suggested content in the Settings app.