Skip to content

Instantly share code, notes, and snippets.

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 SethCalkins/d2ae93536bd15a8ba4b95d9e0a24b64c to your computer and use it in GitHub Desktop.
Save SethCalkins/d2ae93536bd15a8ba4b95d9e0a24b64c to your computer and use it in GitHub Desktop.
Remove Windows 10 Crap
<#
This is a helpful script that will remove the default Windows 10 garbage from your computer
* Comment out any apps that you might want to keep
* Don't forget to run as admin
#>
# 3d Builder
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
# Windows Alarms
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
# Windows Calculator
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
# Windows Communications Apps
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
# Windows Camera
Get-AppxPackage *windowscamera* | Remove-AppxPackage
# Office Hub
Get-AppxPackage *officehub* | Remove-AppxPackage
# Skype App
Get-AppxPackage *skypeapp* | Remove-AppxPackage
# Get Started
Get-AppxPackage *getstarted* | Remove-AppxPackage
# Zune Music
Get-AppxPackage *zunemusic* | Remove-AppxPackage
# Windows Maps
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
# Solitaire Collection
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
# Bing Finance
Get-AppxPackage *bingfinance* | Remove-AppxPackage
# Zune Video
Get-AppxPackage *zunevideo* | Remove-AppxPackage
# Bing News
Get-AppxPackage *bingnews* | Remove-AppxPackage
# OneNote
Get-AppxPackage *onenote* | Remove-AppxPackage
# People
Get-AppxPackage *people* | Remove-AppxPackage
# Windows Phone
Get-AppxPackage *windowsphone* | Remove-AppxPackage
# Photos
Get-AppxPackage *photos* | Remove-AppxPackage
# Windows Store
Get-AppxPackage *windowsstore* | Remove-AppxPackage
# Bing Sports
Get-AppxPackage *bingsports* | Remove-AppxPackage
# Sound Recorder
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
# Bing Weather
Get-AppxPackage *bingweather* | Remove-AppxPackage
# Xbox App
Get-AppxPackage *xboxapp* | Remove-AppxPackage
<#
# Reversal Script (Run this line to install the apps again)
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment