Preinstalled software on Windows 11—trial antivirus, game hubs, partner shortcuts—is not malware, but it clutters Start, consumes RAM, and trains users to distrust their own PC. “Debloating” videos promise instant speed by deleting system packages; the safer path is targeted removal of apps you do not want while leaving Windows Update, Store, and sign-in intact.
This guide is for new PC owners and reinstall veterans who want a clean Start menu without breaking cumulative updates. We cover Settings uninstalls, PowerShell Appx removal for specific packages, OEM-specific junk, and what not to remove.
Before you begin
Prerequisites: Administrator account. Know if the PC is managed by work/school (MDM may reinstall apps).
Backups: Create a restore point. Export a list of installed apps if you are experimenting.
Risks: Removing Microsoft.WindowsStore or core runtime packages can break update chains and winget. Avoid one-click scripts that delete 200 packages without review.
Tier 1: normal uninstall (safest)
Settings → Apps → Installed apps. Sort by name or size. Uninstall:
- Trial AV you will not use (replace with Defender or chosen AV first)
- OEM “support” duplicates
- Game trials you will never open
Why Settings first? Apps registered normally uninstall cleanly without breaking shared components.
Tier 2: Start menu pins and recommendations
Right-click pinned items → Unpin. Settings → Personalization → Start → turn off recommendations and unnecessary folders.
Why personalization? Half of “bloat” is promotional UI, not installed software.
Tier 3: selective Appx removal with PowerShell
List packages for your account:
Get-AppxPackage | Select Name, PackageFullName | Sort Name
Remove a specific package (example—only if you are sure):
Get-AppxPackage *Clipchamp* | Remove-AppxPackage
Prevent reinstall for new users (optional, advanced):
Get-AppxProvisionedPackage -Online | Where DisplayName -like '*Clipchamp*' | Remove-AppxProvisionedPackage -Online
Why provisioned packages? They reinstall for new profiles if you only remove per-user copies.
What to keep
Generally keep:
- Microsoft Store
- Xbox Identity Provider (if you use Game Pass)
- Web Experience / Widgets only if you use them—removing widgets is optional but may return after updates
Why keep Store? Many apps update through it; winget depends on a healthy app model on some setups.
OEM-specific clutter
Dell, HP, Lenovo ship support tools—some useful (driver updates), some redundant. Keep one driver/support channel; remove duplicate “assistant” launchers.
Why one channel? Multiple updaters fight for background CPU.
Disable sponsored Start suggestions
Settings → Privacy & security → General → disable tailored experiences if you want fewer promoted tiles (policy varies by region).
After removal hygiene
Reboot, run Windows Update, open Store once to refresh caches. If Settings → Apps breaks, repair via:
Get-AppxPackage Microsoft.WindowsStore | Reset-AppxPackage
winget as a positive alternative
After cleanup, reinstall tools you actually want with winget—versioned, scriptable, and cleaner than preinstalled trials:
winget install Mozilla.Firefox
winget search "VS Code"
Why winget? Replaces OEM “store recommendations” with software you chose deliberately.
Rebuilding Microsoft Store if needed
If Store is broken after aggressive removal, Microsoft documents PowerShell reinstall commands for Microsoft.WindowsStore—run only from official articles matching your build, then update Store and retry app installs.
Maintenance mindset
New feature updates occasionally reintroduce promotional tiles or app offers. Quarterly review of Startup apps and Installed apps takes ten minutes and prevents gradual bloat from undoing your clean baseline.
Copilot and optional Windows features
Settings → Apps → Optional features lists components you can remove safely (old language packs, unused fonts tools). Distinct from Store apps—review names before removal.
Reinstalling removed inbox apps
winget install "Clipchamp"
Or Microsoft Store search—many inbox apps return if needed.
Measuring success
After cleanup, compare startup time and idle RAM in Task Manager versus baseline screenshot—quantify so you know the effort paid off.
Parental and family PCs
For shared family machines, remove trial AV and adult-oriented game bundles before handing to kids—replace with Firefox/Chrome defaults and Microsoft Family Safety if desired.
S Mode note
Windows 11 in S Mode only allows Store apps—exit S Mode one-way before installing third-party browsers or removing Store-dependent workflows.
Microsoft Teams personal vs work
Teams (work or school) and Teams (personal) are separate apps—uninstall the one you do not use. Work Teams may reinstall via MDM—coordinate with IT instead of fighting policy.
Scheduled tasks audit
Task Scheduler (taskschd.msc) lists OEM updaters. Disable only tasks you recognize (e.g., duplicate driver updaters), not Microsoft\Windows\WindowsUpdate tasks.
Snap and Store games
Microsoft casual games can be uninstalled like other apps if you do not play them—they are not core OS components. Xbox app itself may still be needed for Game Pass—uninstall only if you do not subscribe.
Printer and scanner bundles
OEM printer software bundles scanning suites you never installed—remove bloat but keep the actual driver package from HP/Epson/Canon support, not random CD ISOs.
Legal and warranty considerations
OEM support contracts sometimes expect their support app to remain installed—removing it may not void warranty but can complicate driver update notifications. Keep one official updater path.
Fresh Start alternative
Settings → System → Recovery → Fresh Start reinstalls Windows while optionally keeping files—less nuclear than USB clean install, removes many OEM apps automatically. Use when PowerShell Appx removal feels overwhelming.
Summary workflow
Settings uninstall → personalize Start → selective Appx removal → keep Store → winget reinstall chosen apps → reboot → Windows Update. Avoid mass debloat scripts; Fresh Start if overwhelmed.
Reader checklist (printable)
Uninstall via Settings first, declutter Start, remove known Appx packages only, keep Microsoft Store, reboot, run Windows Update, reinstall wanted apps via winget. Schedule a quarterly ten-minute review—OEMs add shortcuts after driver updates.
If you rely on Xbox Game Pass, keep Xbox app and Gaming Services before removing generic Xbox-labeled trials you do not recognize—read app descriptions carefully. Document package names you removed in a text file so you can reinstall from winget if something breaks. On brand-new PCs, spend twenty minutes in Settings before installing your real software stack—the OEM layer is easiest to remove on day one, not day three hundred.
When in doubt, uninstall one app per reboot so you know which removal caused a regression.
Corporate images may reinstall OEM apps nightly—consumer debloat advice does not apply; ask IT instead of fighting policy.
Restart once after bulk uninstall so Start menu cache refreshes.
Troubleshooting
| Issue | Fix |
|---|---|
| Store missing | Reinstall Store package via documented Microsoft commands |
| Settings won’t open | sfc /scannow and DISM restore health |
| App returns after update | Remove provisioned package; expect some OEM apps to persist |
| Xbox/GP broken | Reinstall related Appx identity packages from Microsoft docs |
Key takeaways
- Uninstall consumer apps via Settings before PowerShell surgery.
- Remove specific Appx packages you recognize; avoid blanket debloat scripts.
- Keep Microsoft Store and components needed for updates and gaming services you use.
- Personalize Start to kill promotional clutter without touching system files.
- Restore point + targeted approach beats speed-run deletion.
FAQ
Does removing Clipchamp free much space? Moderate; bigger wins are games and OEM duplicates.
Will Defender suffice after removing trial AV? For most home users, yes—uninstall trial AV cleanly to avoid two AVs fighting.
Can I automate safely? Scripted lists are fine if you maintain your own allowlist—never run strangers’ scripts unchecked.