To see what’s currently installed for your user:
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*spotify*" | Remove-AppxProvisionedPackage -Online windows 11 bloatware removal powershell
# Loop through the list of bloatware apps and remove them foreach ($app in $bloatwareApps) Get-AppxPackage -Name $app To see what’s currently installed for your user:
Windows 11 arrives with a variety of pre-installed applications and background services that many users find unnecessary. Using for bloatware removal offers a faster, more precise way to reclaim system resources and improve privacy compared to manual uninstallation. Why Use PowerShell for Debloating? windows 11 bloatware removal powershell
This script is divided into two sections: a (for uninstalling apps) and a Provisioning Cleanup (to prevent these apps from installing for new users).