Skip to content

Instantly share code, notes, and snippets.

@rougesheep
Created August 17, 2018 21:35
Show Gist options
  • Save rougesheep/a27e70dafee30894e46d3b9776191e82 to your computer and use it in GitHub Desktop.
Save rougesheep/a27e70dafee30894e46d3b9776191e82 to your computer and use it in GitHub Desktop.
Remove crap apps from Windows 10
Get-AppxPackage -name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MicrosoftFeedbackHub" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsFeedbackHub" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsCamera" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MicrosoftStickyNotes" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsSoundRecorder" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.OneConnect" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.3DBuilder" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingWeather" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.DesktopAppInstaller" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.GetHelp" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.GetStarted" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Messaging" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Microsoft3DViewer" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MSPaint" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Office.OneNote" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.OneConnect" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.People" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Print3D" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.SkypeApp" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsAlarms" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Wallet" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsMaps" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.ZuneMusic" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.ZuneVideo" | Remove-AppxPackage
Get-AppxPackage -name "828B5831.HiddenCityMysteryofShadows" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingNews" | Remove-AppxPackage
Get-AppxPackage -name "A278AB0D.MarchofEmpires" | Remove-AppxPackage
Get-AppxPackage -name "DolbyLaboratories.DolbyAccess" | Remove-AppxPackage
Get-AppxPackage -name "A278AB0D.DisneyMagicKingdoms" | Remove-AppxPackage
Get-AppxPackage -name "king.com.CandyCrushSaga" | Remove-AppxPackage
Get-AppxPackage -name "king.com.CandyCrushSodaSaga" | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment