Skip to content

Instantly share code, notes, and snippets.

@paretech
Created August 10, 2018 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paretech/30eb1d9cdfa902380ecbd1786a05719d to your computer and use it in GitHub Desktop.
Save paretech/30eb1d9cdfa902380ecbd1786a05719d to your computer and use it in GitHub Desktop.
Remove those Windows 10 Apps...
# Modified based off https://www.oueta.com/microsoft/how-to-uninstall-built-in-apps-from-windows-10/
Get-AppxPackage *twitter* | Remove-AppxPackage
Get-AppxPackage *oneconnect* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *messaging* | Remove-AppxPackage
Get-AppxPackage *communicationsapps* | Remove-AppxPackage
Get-AppxPackage *print3d* | Remove-AppxPackage
Get-AppxPackage *autodesksketch* | Remove-AppxPackage
Get-AppxPackage *3dview* | Remove-AppxPackage
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *wallet* | Remove-AppxPackage
Get-AppxPackage *hiddencity* | Remove-AppxPackage
Get-AppxPackage *dragonmania* | Remove-AppxPackage
Get-AppxPackage *cookingfever* | Remove-AppxPackage
Get-AppxPackage *bubblewitch* | Remove-AppxPackage
Get-AppxPackage *empires* | Remove-AppxPackage
Get-AppxPackage *candycrush* | Remove-AppxPackage
Get-AppxPackage *minecraft* | Remove-AppxPackage
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Get-AppxPackage *disney* | Remove-AppxPackage
Get-AppxPackage *royalrevolt* | Remove-AppxPackage
Get-AppxPackage *facebook* | Remove-AppxPackage
Get-AppxPackage *xbox.tcui* | Remove-AppxPackage
Get-AppxPackage *xboxspeech* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Get-AppxPackage *keeper* | Remove-AppxPackage
Get-AppxPackage *phototastic* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *bingnews* | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment