Skip to content

Instantly share code, notes, and snippets.

@l1x
Last active October 31, 2018 15:15
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 l1x/dfbd6cff9392cf4cd9e378a621c54394 to your computer and use it in GitHub Desktop.
Save l1x/dfbd6cff9392cf4cd9e378a621c54394 to your computer and use it in GitHub Desktop.
Uninstall Unnecessary Windows 10 Apps
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get-AppxPackage *getstarted* | 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 *windowsphone* | Remove-AppxPackage
Get-AppxPackage *photos* | Remove-AppxPackage
Get-AppxPackage *windowsstore* | Remove-AppxPackage
Get-AppxPackage *bingsports* | Remove-AppxPackage
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Get-AppxPackage *candy* | Remove-AppxPackage
Get-AppxPackage *sway* | Remove-AppxPackage
Get-AppxPackage *xbox* | Remove-AppxPackage
Get-AppxPackage *XboxGameCallableUI* | Remove-AppxPackage
cleanmgr /SAGERUN:1221
#Additional:
Get-WindowsOptionalFeature –Online | Where-Object {$_.State –eq “Enabled”} | Format-Table
Disable-WindowsOptionalFeature –FeatureName NetFx3 –Online -remove
Disable-WindowsOptionalFeature –FeatureName WindowsMediaPlayer –Online -remove
Disable-WindowsOptionalFeature –FeatureName FaxServicesClientPackage –Online -remove
Disable-WindowsOptionalFeature –FeatureName Printing-Foundation-Features –Online -remove
Disable-WindowsOptionalFeature –FeatureName Printing-Foundation-InternetPrinting-Client –Online -remove
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment