Windows 11 Bloatware Removal Powershell

Get-AppxProvisionedPackage -Online | Where-Object $_.DisplayName -like "*Spotify*" | Remove-AppxProvisionedPackage -Online ``` Use code with caution. Method 2: Use Community-Trusted Debloat Scripts

# --- Configuration --- # List of apps to remove. Edit this list to add/remove specific apps. # Use "Get-AppxPackage -Name *searchterm*" to find the exact name if needed. $BloatwareList = @( "Microsoft.549981C3F5F10" # Cortana "Microsoft.BingWeather" # MSN Weather "Microsoft.BingNews" # MSN News "Microsoft.GetHelp" # Get Help "Microsoft.Getstarted" # Tips / Get Started "Microsoft.Microsoft3DViewer" # 3D Viewer (Legacy) "Microsoft.MicrosoftOfficeHub" # Office Hub (Shortcut, usually safe) "Microsoft.MicrosoftSolitaireCollection" "Microsoft.People" # People App "Microsoft.WindowsFeedbackHub" # Feedback Hub "Microsoft.WindowsMaps" # Maps "Microsoft.WindowsSoundRecorder" # Sound Recorder "Microsoft.Xbox.TCUI" # Xbox UI components (Remove if you don't game) "Microsoft.XboxApp" "Microsoft.XboxGameOverlay" "Microsoft.XboxGamingOverlay" "Microsoft.XboxIdentityProvider" "Microsoft.XboxSpeechToTextOverlay" "Microsoft.YourPhone" # Phone Link "Microsoft.ZuneMusic" # New Media Player (Groove) "Microsoft.ZuneVideo" # Movies & TV "Microsoft.Todos" # Microsoft To Do "Microsoft.OneDrive" # OneDrive (Appx only, usually installed via exe) "Microsoft.SkypeApp" # Skype "Microsoft.Wallet" # Microsoft Pay "Microsoft.PowerAutomateDesktop" # Power Automate "Microsoft.WindowsCommunicationsApps" # Mail and Calendar "Microsoft.Paint" # Paint (New version) "Microsoft.ScreenSketch" # Snipping Tool "Microsoft.MixedReality.Portal" # Mixed Reality Portal "Microsoft.549981C3F5F10" # Cortana "Clipchamp.Clipchamp" # Clipchamp Video Editor windows 11 bloatware removal powershell

Get-AppxPackage | Select Name, PackageFullName Get-AppxProvisionedPackage -Online | Where-Object $_

Get-AppxPackage -AllUsers | Foreach Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" # Use "Get-AppxPackage -Name *searchterm*" to find the

This is destructive and removes almost all Microsoft apps.