Skip to content

Instantly share code, notes, and snippets.

@matt40k
Created July 3, 2017 11:53
Show Gist options
  • Save matt40k/56d7707b2c0a8c8b5910617f4177ca51 to your computer and use it in GitHub Desktop.
Save matt40k/56d7707b2c0a8c8b5910617f4177ca51 to your computer and use it in GitHub Desktop.
Remove cruddy default apps from Win10
# Remove cruddy default apps
Get-AppxPackage Microsoft.XboxIdentityProvider | Remove-AppxPackage
#Get-AppxPackage Microsoft.XboxGameCallableUI | Remove-AppxPackage
Get-AppxPackage Microsoft.MicrosoftStickyNotes | Remove-AppxPackage
Get-AppxPackage Microsoft.BingWeather | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsAlarms | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsSoundRecorder | Remove-AppxPackage
Get-AppxPackage Microsoft.People | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage
Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage
Get-AppxPackage Microsoft.Office.OneNote | Remove-AppxPackage
Get-AppxPackage Microsoft.Advertising.Xaml | Remove-AppxPackage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment