Windows 11 Bloatware Removal Powershell Instant

Get-AppxPackage -AllUsers | Where-Object Camera | Remove-AppxPackage

Get-AppxPackage -AllUsers | where-object $_.name –notlike "*store*" | where-object $_.name –notlike "*calc*" | Remove-AppxPackage

$safeToRemove = @( "Microsoft.3DBuilder" "Microsoft.BingNews" "Microsoft.BingWeather" "Microsoft.GetHelp" "Microsoft.Getstarted" "Microsoft.Messaging" "Microsoft.Microsoft3DViewer" "Microsoft.MicrosoftOfficeHub" "Microsoft.MicrosoftSolitaireCollection" "Microsoft.MixedReality.Portal" "Microsoft.Office.OneNote" "Microsoft.OneConnect" "Microsoft.People" "Microsoft.Print3D" "Microsoft.SkypeApp" "Microsoft.Wallet" "Microsoft.WindowsAlarms" "Microsoft.WindowsCamera" # Keep if you use a webcam "Microsoft.WindowsCommunicationsApps" "Microsoft.WindowsFeedbackHub" "Microsoft.WindowsMaps" "Microsoft.WindowsSoundRecorder" "Microsoft.Xbox.TCUI" "Microsoft.XboxApp" "Microsoft.XboxGameOverlay" "Microsoft.XboxGamingOverlay" "Microsoft.XboxIdentityProvider" "Microsoft.XboxSpeechToTextOverlay" "Microsoft.YourPhone" "Microsoft.ZuneMusic" "Microsoft.ZuneVideo" "Microsoft.Advertising.Xaml" "Microsoft.MSPaint" # Paint is still useful for many ) windows 11 bloatware removal powershell

Or get the app back from the Microsoft Store.

Here’s a helpful, practical guide to using PowerShell for removing bloatware from Windows 11. To remove these apps, you can use the

# Get a list of all installed apps $apps = Get-WmiObject -Class Win32_Product | Where-Object $_.Name -like "*Microsoft*" | Select-Object -ExpandProperty Name

# List of bloatware apps to remove $bloatwareApps = @( "Microsoft.CandyCrushSaga" "Disney.DisneyPlus" "Facebook.Facebook" "Instagram.Instagram" "Microsoft.MicrosoftSolitaireCollection" "Netflix.Netflix" "Twitter.Twitter" "Microsoft.Xbox" "Microsoft.YourPhone" ) To remove these apps

: Prevent apps from returning for new user profiles or after major OS updates.

To remove these apps, you can use the following PowerShell script: