Windows 11 bloatware removal using PowerShell terminal on a laptop screen

Windows 11 Bloatware Removal: Safe Methods & PowerShell Guide

Windows 11 bloatware removal is something millions of users โ€” from home enthusiasts to IT admins managing hundreds of endpoints โ€” are actively pursuing. Out of the box, Windows 11 ships with more than 30 pre-installed apps, many of which serve Microsoft’s advertising or cross-sell goals rather than your productivity needs. Apps like Candy Crush Saga, Xbox Game Bar, TikTok, and Clipchamp appear on a fresh install whether you want them or not. The good news: you can remove most of them safely, and this guide walks you through every method step by step.

Why Bloatware on Windows 11 Has Become a Flashpoint

IT admin reviewing Windows 11 pre-installed apps list for bloatware removal

IT professionals have been vocal about their frustration. A 2025 survey covered by Neowin found that admins are overwhelmingly fed up with Microsoft bundling third-party and first-party apps onto managed devices without a reliable, centralised removal mechanism. But the frustration extends to home users too: every unnecessary background process consumes RAM, eats into SSD write cycles, and adds to startup times. On a machine with 8 GB of RAM, a dozen idle bloatware processes can collectively consume 500 MB or more โ€” resources that should belong to your actual workload.

Beyond performance, there are genuine privacy concerns. Several pre-installed apps request broad telemetry permissions, push notifications, and location access on first launch. Removing them eliminates that surface area entirely.

What Counts as Windows 11 Pre-Installed Apps Worth Removing?

Not all built-in apps are equal. Some โ€” like Windows Security, Task Manager, and Notepad โ€” are core system utilities you should leave alone. Others are discretionary. Here is a practical breakdown:

  • Safe to remove: Candy Crush Saga, Solitaire Collection, TikTok, Instagram, Facebook, Clipchamp (Video Editor), Xbox Game Bar (on non-gaming PCs), Mail & Calendar (if you use a browser client), Microsoft Teams (consumer version), Money, News, Weather
  • Remove with care: Microsoft Edge (used by Windows Update UI internals), OneDrive (can be uninstalled but affects File Explorer integration), Cortana, Xbox app (affects some Store functions)
  • Do NOT remove: Windows Security, Windows Update, Microsoft Store, .NET Framework components, DirectX, and any app labelled as a system component

If in doubt, research the specific package name before running any removal command โ€” a quick search for the AppX package name will confirm whether it is safe.

Method 1: Remove Windows 11 Bloatware via Settings (No Risk)

PowerShell script commands used to debloat Windows 11 and remove pre-installed apps

The safest way to debloat Windows 11 is through the Settings menu โ€” no command line required. This method only targets apps that Windows allows users to uninstall directly.

  1. Open Settings (Win + I) and navigate to Apps > Installed apps.
  2. Use the search bar to find a specific app, or scroll through the full list.
  3. Click the three-dot menu next to the app and select Uninstall.
  4. Confirm the prompt. The app is removed immediately.

This approach is reversible โ€” you can reinstall most of these apps from the Microsoft Store at any time. For casual users who only want to clean up a handful of apps, this is all you need.

Method 2: Debloat Windows 11 with PowerShell Scripts

PowerShell gives you surgical control over AppX packages, including provisioned apps that are silently reinstalled for every new user account. This is the method IT administrators rely on for bulk or automated debloating.

List All Installed AppX Packages

Before removing anything, audit what is installed:

Get-AppxPackage -AllUsers | Select Name, PackageFullName | Sort Name

This outputs every AppX package on the device for all user accounts. Note the exact Name value for any package you want to target.

Remove a Specific App for the Current User

Get-AppxPackage -Name "Microsoft.XboxGameOverlay" | Remove-AppxPackage

Replace the package name with the one you identified. This removes the app for the currently signed-in user but leaves the provisioned package intact (meaning it will return for any new account created on this PC).

Remove a Provisioned App (Prevents Reinstallation for New Users)

Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*Candy*" | Remove-AppxProvisionedPackage -Online

This targets the provisioned (system-wide) version. On a shared or enterprise PC, this is the command that matters โ€” it stops the app from reappearing for every new user sign-in.

Remove All Bloatware in One Command (Use Cautiously)

Get-AppxPackage -AllUsers | Where-Object {$_.Name -notlike "*Microsoft.Windows*" -and $_.Name -notlike "*Microsoft.Net*"} | Remove-AppxPackage

This is a broad sweep. It is powerful but imprecise โ€” always test on a non-production machine first and exclude any packages you know you need.

Win11Debloat: The Community PowerShell Script

For users who do not want to write their own scripts, the open-source Win11Debloat project on GitHub has become the go-to community tool. It wraps common removal and customisation tasks โ€” including disabling telemetry, reverting the context menu to the Windows 10 style, and removing dozens of pre-installed apps โ€” into a single interactive script. Run it in an elevated PowerShell session and follow the on-screen prompts. It is lightweight, transparent (all source is visible), and actively maintained.

Method 3: Group Policy for Managed Windows 11 Devices

Performance comparison showing RAM improvement after Windows 11 bloatware removal

If you manage a fleet of Windows 11 Enterprise or Education devices, Microsoft introduced a policy-based app removal mechanism that lets you specify which pre-installed Store apps to remove across all managed endpoints. Navigate to Computer Configuration > Administrative Templates > Windows Components > App Package Deployment and enable Remove default Microsoft Store packages from the system. You then select apps from a defined list; removals happen automatically at user sign-in.

This approach is documented on Microsoft Learn’s policy-based inbox app removal guide and is the officially supported enterprise method โ€” far safer than running unsanctioned scripts across managed endpoints.

Does Debloating Windows 11 Actually Improve Performance?

Yes โ€” but with realistic expectations. Removing Windows 11 pre-installed apps delivers the clearest gains in three areas:

  • Boot time: Eliminating startup processes from apps like Xbox Game Bar, Teams, and OneDrive can shave 5โ€“15 seconds from cold boot times on mid-range hardware.
  • RAM headroom: A clean debloated install typically frees 300โ€“600 MB of active RAM compared to the stock out-of-box experience โ€” meaningful on 8 GB machines.
  • Background CPU usage: Telemetry tasks, News & Interests widgets, and app update processes all consume CPU cycles periodically. Removing them reduces idle CPU load.

What debloating will not fix: driver issues, slow HDDs, ageing CPUs, or network-related slowdowns. It is one layer of optimisation, not a full PC upgrade. If your system is genuinely struggling, you may want to start with a clean, properly licensed copy of Windows 11 on fresh hardware.

Remove Windows 11 Bloatware Safely: Key Rules to Follow

A handful of common mistakes turn a straightforward debloat into a recovery-mode headache. Follow these rules and you will avoid them:

  • Create a restore point first. Open System Properties > System Protection > Create before running any PowerShell commands. It takes under a minute and gives you a rollback if something goes wrong.
  • Never use a nuclear script on a production machine. Scripts that remove every AppX package without exception will take out components that Windows Update and the Store depend on.
  • Stick to your own device. Running debloat tools on a work-managed machine almost certainly violates IT policy and may break MDM enrolment.
  • Test in a VM first. If you want to experiment with aggressive removal, spin up a Windows 11 VM, apply the script there, and confirm stability before touching your main machine.
  • Know what you removed. Keep a log of every package name you uninstalled. If something breaks two weeks later, you will know where to look.

What About Third-Party Debloat Tools?

Tools like O&O ShutUp10++, Winaero Tweaker, and BloatyNosy are popular โ€” and most are legitimate. They wrap the same PowerShell and registry changes into a GUI, making them accessible to non-technical users. The caveat: always download from the official developer’s website, not from a file-sharing or crack site. A debloat tool downloaded from an unverified source is one of the most common vectors for malware on Windows systems. Verify the developer, check recent community discussion on forums like Reddit’s r/Windows11, and scan the installer before running it.

Getting a Clean Windows 11 Licence to Start Fresh

Sometimes the most effective debloat is starting from scratch โ€” a clean Windows 11 install with only the apps you choose. If you need a genuine licence for a new build or a reinstall, Shop Key Online supplies Microsoft Windows 11 Pro Retail keys with instant email delivery and a lifetime money-back guarantee if activation fails. For home users, the Microsoft Windows 11 Home Retail licence is a cost-effective starting point. Both activate directly with Microsoft’s servers and receive all future security updates โ€” no bloated OEM images, no pre-loaded third-party trials.

Frequently Asked Questions

Is it safe to remove Windows 11 pre-installed apps with PowerShell?

Yes, provided you target the correct package names and avoid removing core system components. Always create a restore point before running PowerShell removal commands, and test scripts on a non-critical machine first. Removing well-known consumer apps like Candy Crush, Solitaire, or the Xbox app carries very little risk.

Will bloatware removal void my Windows licence or warranty?

No. Uninstalling pre-installed apps does not affect your Windows activation status or invalidate a genuine licence. Your product key remains valid regardless of which Store apps are installed. However, modifying core system files or using unofficial activation bypass tools can cause activation failures โ€” avoid those entirely.

Can Microsoft re-install bloatware after a Windows update?

Yes, this is a known issue. Some apps โ€” particularly promoted Store apps โ€” are reinstated during major feature updates (e.g. 23H2, 24H2). To prevent this, remove the provisioned package (not just the per-user package) using Remove-AppxProvisionedPackage. Enterprise admins using Group Policy-based removal have more reliable persistence across updates.

Does debloating Windows 11 speed up gaming performance?

It can help marginally. Removing Xbox Game Bar, background telemetry tasks, and unused apps reduces CPU and RAM overhead, which benefits games on lower-spec hardware. On a high-end gaming rig with 32 GB of RAM, the gains will be barely perceptible. Pairing debloating with disabling unnecessary startup programs and keeping drivers updated will deliver more consistent results.

What is the difference between removing an app and disabling it?

Removing an app uninstalls its files entirely from the system. Disabling (e.g. via Task Manager’s Startup tab or Group Policy) stops it from launching at boot but leaves the files in place. For apps you are confident you will never use, full removal is cleaner. For apps you are uncertain about, disabling first lets you test the impact before committing to removal.