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 heinrichreimer/0c84119ab9de42fd371918f2e9fb024d to your computer and use it in GitHub Desktop.
Save heinrichreimer/0c84119ab9de42fd371918f2e9fb024d to your computer and use it in GitHub Desktop.
Delete unused, pre-installed Windows Apps
Get-AppxPackage -allusers *Microsoft.BingWeather* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.WindowsMaps* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.Messaging* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.ZuneVideo* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.OneConnect* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.ZuneMusic* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.GetHelp* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.People* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.WindowsCommunicationsApps* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.MSPaint* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.Print3D* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.Office.OneNote | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.WindowsSoundRecorder* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.WindowsCalculator* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.XboxApp* | Remove-AppxPackage
# Get-AppxPackage -allusers *Microsoft.MicrosoftEdge* | Remove-AppxPackage
# Get-AppxPackage -allusers *Microsoft.Windows.SecHealthUI* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.Office.Sway* | Remove-AppxPackage
@heinrichreimer
Copy link
Author

Unfortunately, I don't know how to re-install any of these.

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