Which Preinstalled Windows 11 Apps Are Safe to Remove
Published September 12, 2026
A fresh Windows 11 installation still ships with news widgets, promo stubs, Xbox services and cloud trials you never asked for. Removing them is safe and satisfying — as long as you know where the line between “preinstalled app” and “system component” lies. This guide gives you the line: what is safe to remove, what needs care, what to never touch, and how to do it without breaking updates.
The rule of thumb
- Store apps are removable and reinstallable: if it came from the Microsoft Store, you can remove it and get it back later from the Store or with a single WinGet command.
- Windows features are different: .NET, WebView2, the Store itself, shell components and drivers are infrastructure. Remove them and things break — typically the next update, or the Start menu.
- Never run a debloat script you cannot read, and that does not log what it changes. If a tool doesn't show you the list of changes before it runs, close it.
Safe to remove on most PCs
- News and interests apps: Microsoft News, Weather, Tips (Get Started), Solitaire Collection, Maps, Get Help.
- Promo and trial apps: Spotify, Disney+, Prime Video, LinkedIn, Skype, Clipchamp and Office Hub stubs — if you never use them.
- Mail & Calendar, To Do and People — once you have set up a replacement (new Outlook, Thunderbird or webmail).
- The Xbox stack: Xbox, Xbox Game Bar, Gaming Services — only on PCs that never game or use Game Pass. If you just want the overlay gone, disable Game Bar instead of removing it.
- OEM clutter: vendor support assistants, trial antivirus suites, manufacturer stores and utilities. Use the vendor's own uninstall tool when one is provided.
Remove with care
- OneDrive: unlink it first (“Unlink this PC”), make sure your files are synced or move them to a local folder, and only then uninstall. Never delete the OneDrive folder blindly — that is one of the few ways to actually lose data doing this.
- Microsoft Edge: it is deeply integrated with the system, and WebView2 apps depend on the same runtime. Forcing its removal breaks updates. Keep it installed, make your preferred browser the default, and disable the Edge features you dislike instead.
- Photos, Notepad, Paint, Snipping Tool: removable, but set up your replacements first. Windows may also reinstall some of these through updates or new feature packs.
- Widgets and Copilot: better disabled (taskbar settings) than uninstalled. Windows tends to reinstall or re-enable them, and failed removal attempts can break the taskbar.
- Teams (personal) and Phone Link: safe to remove if unused, but they may return with some feature updates — check after major upgrades.
Do not remove
- Microsoft Store and App Installer — App Installer is the engine behind winget, the safest way to manage software.
- WebView2 Runtime, .NET runtimes and Visual C++ redistributables — hundreds of applications depend on them.
- Defender components, Windows Security / Security Health, and shell hosts (Start Menu Experience, ShellExperienceHost, Search).
- Dependency packages the Store manages (VCLibs, UWP frameworks) — never delete these manually.
- Anything Settings flags as a system component, and anything you cannot easily reinstall.
How to remove apps safely
There are three standard ways, from gentlest to most scriptable:
- Settings → Apps → Installed apps → “…” → Uninstall. The simplest, and it never lies about what is a system component.
- WinGet in a terminal: winget uninstall “App Name”. Shows exact package matches and works well in batch.
- PowerShell: Get-AppxPackage <Name> | Remove-AppxPackage removes it for the current user. Remove-AppxProvisionedPackage -Online -PackageName <name> (admin) also stops it installing for new accounts.
Reinstalling is just as easy: search the Microsoft Store, or winget install <id>.
A cleaner path: documented app management
CodeWinOptimizer approaches this differently from debloat scripts: its App Manager lists 180+ curated apps with one-click install or uninstall through WinGet or Chocolatey, shows what is already installed before you touch anything, and its debloat tweaks use documented WinGet commands you can read first and revert later.
Read the App Manager documentation
See the “Remove bloatware” tweak and its exact commands
See the “Disable OneDrive” tweak (if you keep it installed but off)
Summary
Preinstalled apps are removable; system components are not. Stick to Store apps you recognize, unlink OneDrive before you touch it, leave Edge and the runtime stack alone, and keep a list of what you removed. That is a clean Windows — without a broken one.
CodeWinOptimizer is free and open source
Portable, local-first, and telemetry-free. Every tweak in this guide is documented with its exact commands and can be reverted from the app.