Windows 11 Bloatware Removal Powershell -

Get-AppxPackage *spotify* | Remove-AppxPackage

This keeps Store, Calculator, Photos, Camera, Notepad, and Paint—removing almost everything else.

To see apps provisioned for all new users: windows 11 bloatware removal powershell

PowerShell provides "surgical control" over built-in Windows apps. It allows you to:

foreach ($app in $safeToRemove) Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue windows 11 bloatware removal powershell

Here’s a helpful, practical guide to using PowerShell for removing bloatware from Windows 11.

# 2. Remove from System Provisioning (Prevents install for NEW users) # Requires Admin Rights if ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) windows 11 bloatware removal powershell

While removing:

# --- Execution ---

If you accidentally remove an app you wanted (like the Photos app or the Calculator), you can reinstall them easily via the Microsoft Store or by using this command to reinstall default Windows apps: