Skip to content

Instantly share code, notes, and snippets.

@Eonasdan
Created September 4, 2015 14:58
Show Gist options
  • Save Eonasdan/88d7b4169f4805c44baf to your computer and use it in GitHub Desktop.
Save Eonasdan/88d7b4169f4805c44baf to your computer and use it in GitHub Desktop.
Remove annoying windows 10 store apps you can't uninstall. this is a powershell script to for uninstall win 10 built in apps that run for no reason. It also appears that MS will force some/all of them back after a windows update. From http://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 Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
# Uninstall Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
# Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
# Uninstall Camera:
Get-AppxPackage *windowscamera* | 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 OneNote:
Get-AppxPackage *onenote* | 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 Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
# Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
# Uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
# Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
# Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage
@FutureShaper
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment