Skip to content

Instantly share code, notes, and snippets.

@alexb5dh
Last active December 31, 2017 09:55
Show Gist options
  • Save alexb5dh/55efced75751a68900f2d73b316cc31e to your computer and use it in GitHub Desktop.
Save alexb5dh/55efced75751a68900f2d73b316cc31e to your computer and use it in GitHub Desktop.
[Remove Windows Apps] #script
#
# https:#www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/
#
# Uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
# Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
# Uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage
# Uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage
# Uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage
# Uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
# Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
# Uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
# Uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
# Uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
# Uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage
# Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage
# Uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage
# Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage
# Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
# Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
# Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment