Skip to content

Instantly share code, notes, and snippets.

@imggion
Created March 8, 2022 20:15
Show Gist options
  • Select an option

  • Save imggion/f584857beae07d2338a63b8c591942b5 to your computer and use it in GitHub Desktop.

Select an option

Save imggion/f584857beae07d2338a63b8c591942b5 to your computer and use it in GitHub Desktop.
Remove Windows 10 Built-in apps
Write-Host "Eliminating built-in 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
Write-Host "Done.."
@imggion
Copy link
Author

imggion commented Mar 8, 2022

Don't forget to run this script as Administrator.

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