Sun. Dec 14th, 2025

Windows 11 Bloatware Removal Powershell Instant

Windows 11 comes with many pre-installed apps (often called bloatware) that you may never use—Spotify, TikTok, Xbox Game Pass, Candy Crush, Disney+, and various Microsoft “helper” apps. While you can uninstall some manually, PowerShell offers a faster, more thorough way to remove multiple apps at once.

Get-AppxPackage -AllUsers | Foreach Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"

Get-AppxProvisionedPackage -Online | Select DisplayName, PackageName windows 11 bloatware removal powershell

else Write-Host "Not installed: $App" -ForegroundColor DarkGray

Would you like a ready-to-run .ps1 script file, or help customizing which apps to keep? Windows 11 comes with many pre-installed apps (often

# 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)

Before removing any apps, make sure you understand the implications. Some apps might be required for system functionality or might be used by other apps. Xbox Game Pass

<# .SYNOPSIS Windows 11 Bloatware Removal Script .DESCRIPTION Removes common pre-installed applications for the current user and prevents them from installing for new users. Includes a safety check for critical apps. .NOTES Run as Administrator. #>

For provisioned apps (removes for future users too):