After running your script, it is highly recommended to . This allows Windows to clear out cached files and update the Start menu indexing.
: Use the "Provisioned" command to ensure apps aren't reinstalled for new users or after major updates: Get-AppxProvisionedPackage -Online | Where-Object $_.DisplayName -like "*xbox*" | Remove-AppxProvisionedPackage -Online . Option 2: All-in-One Community Scripts
If a script removes something vital to your workflow, you can revert instantly. powershell script to remove windows 11 bloatware
Remove "unremovable" system apps like Xbox Game Bar or Maps. Automate the process for new PC setups.
catch Write-Log "FAILED: Could not disable $service" -Color Red After running your script, it is highly recommended to
If you want to remove specific apps without a full system "debloat," use the following commands in :
Windows 11 is a powerful operating system, but it arrives with a significant amount of "bloatware"—pre-installed apps, widgets, and background services that many users never touch. These programs consume system resources, clutter your Start menu, and can even impact privacy. Option 2: All-in-One Community Scripts If a script
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser .\Remove-Bloatware.ps1
This command removed Microsoft Office, but I still had a slew of other apps to tackle. I turned to a more comprehensive script that would remove most of the bloatware from my system:
$bloatwareApps = @( # Gaming bloat "Microsoft.BingSolitaire", "Microsoft.MicrosoftMahjong", "Microsoft.MicrosoftMinesweeper", "Microsoft.MicrosoftSudoku", "Microsoft.MicrosoftJigsaw", "Microsoft.Xbox.TCUI", "Microsoft.XboxApp", "Microsoft.XboxGameCallableUI", "Microsoft.XboxGamingOverlay", "Microsoft.XboxIdentityProvider", "Microsoft.XboxSpeechToTextOverlay",