Skip to content

Instantly share code, notes, and snippets.

@amel
Created August 31, 2019 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amel/c0bbff1775423df6d6ba406375b33a9e to your computer and use it in GitHub Desktop.
Save amel/c0bbff1775423df6d6ba406375b33a9e to your computer and use it in GitHub Desktop.
Windows 10 bloatware removal script in Powershell
# USAGE: Open PowerShell with admin rights and run ./remove-bloatware.ps1
# windowscommunicationsapps contains the calendar and mail applications
# zunemusic is the music application and zunevideo is the video application
Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage
Get-AppxPackage -allusers *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers *officehub* | Remove-AppxPackage
Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage
Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage
Get-AppxPackage -allusers *zunevideo* | Remove-AppxPackage
Get-AppxPackage -allusers *solitarecollection* | Remove-AppxPackage
Get-AppxPackage -allusers *bingfinance* | Remove-AppxPackage
Get-AppxPackage -allusers *bingnews* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.People* | Remove-AppxPackage
Get-AppxPackage -allusers *bingsports* | Remove-AppxPackage
Get-AppxPackage -allusers *xboxapp* | Remove-AppxPackage
Get-AppxPackage -allusers *3DPrint* | Remove-AppxPackage
Get-AppxPackage -allusers *skypeapp* | Remove-AppxPackage
Get-AppxPackage -allusers *advertising* | Remove-AppxPackage
Get-AppxPackage -allusers *bingweather* | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment