Skip to content

Instantly share code, notes, and snippets.

@anthonyeden
Created December 18, 2018 10:47
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonyeden/e6ba2564a857f8d6d190b8afe3942333 to your computer and use it in GitHub Desktop.
Save anthonyeden/e6ba2564a857f8d6d190b8afe3942333 to your computer and use it in GitHub Desktop.
Windows 10 Basic Cleanup - Powershell
Get-AppxPackage -allusers *messaging* | Remove-AppxPackage
Get-AppxPackage -allusers *WindowsMaps* | Remove-AppxPackage
Get-AppxPackage -allusers *bing* | Remove-AppxPackage
Get-AppxPackage -allusers *zune* | Remove-AppxPackage
get-appxpackage -allusers *officehub* | remove-appxpackage
get-appxpackage -allusers *skype* | remove-appxpackage
get-appxpackage -allusers *people* | remove-appxpackage
get-appxpackage -allusers *solitaire* | remove-appxpackage
get-appxpackage -allusers *xbox* | remove-appxpackage
Get-AppxPackage -allusers *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers *windowscamera* | Remove-AppxPackage
Get-AppxPackage -allusers *connectivitystore* | Remove-AppxPackage
Get-AppxPackage -allusers *oneconnect* | Remove-AppxPackage
Get-AppxPackage -allusers *sports* | Remove-AppxPackage
Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage
Get-AppxPackage -allusers *3d* | Remove-AppxPackage
Get-AppxPackage -allusers *xboxapp* | Remove-AppxPackage
Get-AppxPackage -allusers *xboxspeech* | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment