Skip to content

Instantly share code, notes, and snippets.

@j796160836
Created August 7, 2019 03:34
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 j796160836/782e9a08254f0141a72396bb165bf2cc to your computer and use it in GitHub Desktop.
Save j796160836/782e9a08254f0141a72396bb165bf2cc to your computer and use it in GitHub Desktop.
Remove Win10 unused pre installed apps (Run it with Windows PowerShell (Admin))
# Run with Windows PowerShell (Admin)
# https://www.thewindowsclub.com/remove-built-windows-10-apps-users-using-powershell-script
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *getstarted* | Remove-AppxPackage
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Get-AppxPackage *bingfinance* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Get-AppxPackage *bingnews* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Get-AppxPackage *bingsports* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Get-AppxPackage *Microsoft.XboxGamingOverlay* | Remove-AppxPackage
Get-AppxPackage *Microsoft.XboxGameCallableUI* | Remove-AppxPackage
Get-AppxPackage *SpotifyAB.SpotifyMusic* | Remove-AppxPackage
Get-AppxPackage *king.com.CandyCrushFriends* | Remove-AppxPackage
@jaroslawjanas
Copy link

I needed this

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