Skip to content

Instantly share code, notes, and snippets.

@at0dd
Created November 24, 2016 02:53
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save at0dd/9f5042c6eb460e589969872868be5572 to your computer and use it in GitHub Desktop.
Save at0dd/9f5042c6eb460e589969872868be5572 to your computer and use it in GitHub Desktop.
Uninstalls all default Windows 10 apps except for the Windows Store
#By default, uninstalls all default Windows 10 apps except for the Windows Store.
#Alternatively, comment the first line and then uncomment specific packages to remove them.
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage #Remove all except Store
#Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage #3D Builder
#Get-AppxPackage -allusers *alarms* | Remove-AppxPackage #Alarms and Clock
#Get-AppxPackage -allusers *Appconnector* | Remove-AppxPackage #App Connector
#Get-AppxPackage -allusers *calculator* | Remove-AppxPackage #Calculator
#Get-AppxPackage -allusers *communications* | Remove-AppxPackage #Calendar and Mail
#Get-AppxPackage -allusers *camera* | Remove-AppxPackage #Camera
#Get-AppxPackage -allusers *CandyCrushSaga* | Remove-AppxPackage #Candy Crush Saga
#Get-AppxPackage -allusers *CandyCrushSodaSaga* | Remove-AppxPackage #Candy Crush Soda Saga
#Get-AppxPackage -allusers *Feedback* | Remove-AppxPackage #Feedback
#Get-AppxPackage -allusers *officehub* | Remove-AppxPackage #Get Office
#Get-AppxPackage -allusers *skypeapp* | Remove-AppxPackage #Get Skype
#Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage #Get Started
#Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage #Groove Music
#Get-AppxPackage -allusers *InsiderHub* | Remove-AppxPackage #Insider Hub
#Get-AppxPackage -allusers *maps* | Remove-AppxPackage #Maps
#Get-AppxPackage -allusers *Messaging* | Remove-AppxPackage #Messaging and Skype
#Get-AppxPackage -allusers *solitairecollection* | Remove-AppxPackage #Microsoft Solitaire Collection
#Get-AppxPackage -allusers *ConnectivityStore* | Remove-AppxPackage #Microsoft WiFi
#Get-AppxPackage -allusers *bingfinance* | Remove-AppxPackage #Money
#Get-AppxPackage -allusers *zunevideo* | Remove-AppxPackage #Movies and TV
#Get-AppxPackage -allusers *bingnews* | Remove-AppxPackage #News
#Get-AppxPackage -allusers *onenote* | Remove-AppxPackage #OneNote
#Get-AppxPackage -allusers *people* | Remove-AppxPackage #People
#Get-AppxPackage -allusers *CommsPhone* | Remove-AppxPackage #Phone
#Get-AppxPackage -allusers *windowsphone* | Remove-AppxPackage #Phone Companion
#Get-AppxPackage -allusers *photos* | Remove-AppxPackage #Photos
#Get-AppxPackage -allusers *ReadingList* | Remove-AppxPackage #Reading List
#Get-AppxPackage -allusers *Scan* | Remove-AppxPackage #Scan
#Get-AppxPackage -allusers *windowsstore* | Remove-AppxPackage #Store - NOT RECOMMENDED
#Get-AppxPackage -allusers *Office.Sway* | Remove-AppxPackage #Sway
#Get-AppxPackage -allusers *bingsports* | Remove-AppxPackage #Sports
#Get-AppxPackage -allusers *Twitter* | Remove-AppxPackage #Twitter
#Get-AppxPackage -allusers *soundrecorder* | Remove-AppxPackage #Voice Recorder
#Get-AppxPackage -allusers *bingweather* | Remove-AppxPackage #Weather
#Get-AppxPackage -allusers *xbox* | Remove-AppxPackage #Xbox
#Get-AppxPackage -allusers *XboxOneSmartGlass* | Remove-AppxPackage #Xbox SmartGlass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment