Forum Discussion
How to remove all the bloatware apps from Windows 11?
Hi. My Windows 11 computer has many preinstalled apps I never use, which take up storage and make the system feel cluttered. I want to safely uninstall unnecessary applications without removing anything essential or causing system problems.
Could someone provide clear, beginner-friendly steps for safely cleaning up these unwanted applications, and how to remove all the bloatware apps from Windows 11 without affecting important Windows features or updates?
8 Replies
- GaskSteel Contributor
This is a common issue and you can removal all bloatware in just one click:
https://www.bincodelab.com/remove-bloatware-apps-from-windows
P.S. I have done this successfully on my Windows 11 PC and Windows 10 laptop.
- EastonouTin Contributor
To learn how to permanently remove bloatware, you must go beyond just uninstalling apps for your current user account. Simply using Get-AppxPackage *appName* | Remove-AppxPackage will only remove the app for the currently logged-in user.
For a truly permanent removal, you need to target the "provisioned" packages that are installed for any new user account. This is the key part of how to permanently remove bloatware.
1.Remove for Current User: First, remove the package for your current profile using the following command in PowerShell (run as Administrator):
powershell
Get- AppxPackage *appName* | Remove- AppxPackageReplace *appName* with the name of the app you want to remove, such as *xbox* to remove Xbox-related apps.
This method is a core part of the standard technique for how to permanently remove bloatware, as it directly interacts with the Windows app management system. It is far more complex and offers more control than the standard Settings interface, as it requires precise command-line knowledge to identify and remove specific application packages.
- JoshuaGarciaIron Contributor
If you’ve ever tried to uninstall preinstalled apps from Windows 11 only to find that the uninstall button is grayed out or missing entirely, PowerShell offers a way to permanently remove these apps.
This built-in command-line tool gives you direct access to the Windows package management system, allowing you to manage specific apps that don’t appear in Settings or Control Panel.
While the Settings app only allows you to remove apps for the current user, PowerShell can work with system-level packages, making it one of the most effective methods for users who want to remove all the bloatware apps from Windows 11 and thoroughly clean up their system.
To get started, right-click the Start button and select Terminal, or search for PowerShell and run it as an administrator. Once the Terminal is open, run:
Get-AppxPackage | Select Name, PackageFullName
to display a complete list of all installed apps and their full package names. Browse the list to find the app you want to uninstall—for example, Microsoft.XboxApp—and copy its full PackageFullName. Then, run the uninstallation command:
Remove-AppxPackage PackageFullName, replacing PackageFullName
- with the name you actually copied.
- For example, to uninstall the Xbox app, run:
Remove-AppxPackage Microsoft.XboxApp_1.0.0.0_x64__8wekyb3d8bbwe.
- The app will be uninstalled immediately—there will be no confirmation prompt, and it won’t be moved to the Recycle Bin; it will simply disappear.
- To remove all the bloatware apps from Windows 11
- in one go, advanced users typically combine these commands with filters. For example,
Get-AppxPackage Xbox | Remove-AppxPackage
- removes all Xbox-related packages.
However, proceed with caution: permanently removing critical system components may cause system instability, and there is no built-in method to restore these components other than through a system reset or reinstallation.
- ColtonaipCopper Contributor
The most fundamental method involves using built-in PowerShell commands yourself. This offers the highest degree of complexity and control, as you are writing and executing the commands directly.
You can remove all the bloatware apps from Windows 11 by using this tool in a few different ways:
1. Download the Script: You'll need to save the script as a .ps1 file (like win10_11remove bloatware.ps1).
2. Run PowerShell as Administrator: Right-click on the PowerShell icon and select "Run as administrator".
3. Execute the Script: You can run it in different modes:- Interactive Mode: This will show you a list of detected apps and let you choose what to remove.
- Auto-Remove Mode: Use the command .\win10_11_remove_bloatware.ps1 -RemoveAll to automatically remove all the bloatware apps from Windows 11 without further input.
- Scan Only Mode: Use .\win10_11remove bloatware. ps1 -ScanOnly to just see what would be removed without actually making changes.
Important Considerations
- Preserves Essential Apps: The tool is designed to only target known bloatware and will preserve important system apps to avoid breaking your system.
- Prevents Reinstallation: It also includes a provisioned package cleanup feature, which prevents the bloatware from being reinstalled automatically for new users on the same machine.
- RobertoenTin Contributor
Win11Debloat is indeed a powerful and popular tool for removing pre-installed applications from Windows 11. So that it offers a streamlined way to how to permanently remove bloatware and declutter your system.
It is crucial to understand that Win11Debloat makes changes that go beyond just app removal, reflecting the developer's preferences for how Windows should be configured . For example, it may disable Fast Startup as a default setting, which will make your computer take longer to boot up . These tweaks are an important part of how to permanently remove bloatware, as they can help prevent system slowdowns from background processes, but they come with trade-offs .
While the tool is open-source and considered safe by many, it is powerful software that modifies system settings. It's always recommended to use such tools with caution and create a system restore point beforehand . The script also features an undo function, so most changes can be reverted if you are unhappy with the result .
- MaverickLincolnIron Contributor
Preinstalled apps and unnecessary system components can take up storage and make a fresh installation feel cluttered. Bloatynosy provides a simple way to review and remove unwanted components, making it useful for users looking for the best way to remove bloatware Windows 11.
How to use:
- Open the program and review the available apps and components.
- Select the items you do not need.
- Check each selection carefully before removing it.
- Start the cleanup process and wait for it to finish.
- Restart the computer if required.
- Check the system afterward to make sure everything you still need works normally.
With this workflow, the best way to remove bloatware Windows 11 is to identify unnecessary items first and remove them selectively rather than deleting everything at once.
Note:
- Create a restore point before making changes.
- Do not remove components you are unsure about.
- Back up important files before starting the cleanup.
- JoshuaParkerIron Contributor
Using the Uninstall an app feature is a safe and convenient way to uninstall apps in Windows 11. This method is ideal for uninstalling multiple apps at once using a familiar graphical interface. As the primary built-in method for remove all the bloatware apps from Windows 11, it allows you to safely uninstall non-essential apps—such as Xbox, Spotify, Instagram, TikTok, Disney+, Netflix, and Candy Crush—without the need for third-party tools.
How to Remove All the bloatware apps from Windows 11
Step 1: Open Settings → Apps → Installed Apps
Step 2: Scroll through the list to find the app you want to uninstall.
Step 3: Tap the three dots next to the app
Step 4: Select Uninstall
Finally, tap Uninstall again to confirm.
- Apps You Can Safely Uninstall
- Xbox, Spotify, Instagram, TikTok, Disney+, Netflix, Candy Crush
- Weather, News, Finance, Sports, Mail & Calendar
- OneDrive, Clipchamp, Solitaire Collection, Microsoft 365
This is a safe method that is built directly into Windows 11. Although it cannot uninstall all preinstalled apps, it is the first step toward removing all unnecessary apps from Windows 11 before considering more advanced methods, such as using PowerShell or third-party tools.
- FabianRomeroBronze Contributor
A fresh Windows installation can include many applications and features that some users may never use. Removing unnecessary components can make the system feel cleaner and easier to manage, so users often search for the best way to remove bloatware Windows 11.
Win11SophiaScript is a PowerShell-based tool that provides various options for managing Windows settings and removing unwanted components. It can be useful for reviewing installed features, adjusting privacy settings, and cleaning up parts of the system that are not needed.
To get started, open the script with the required permissions and review the available options before making changes. Select the applications or Windows components you want to remove, apply the changes, and restart the computer if requested. It is worth checking each option carefully rather than removing everything at once, since some built-in features may still be useful. For users looking for the best way to remove bloatware Windows 11, this provides a convenient way to handle system cleanup from one place.