Skip to content

Instantly share code, notes, and snippets.

@oskaremil
Created December 22, 2016 11:13
Show Gist options
  • Save oskaremil/92b16fffce782687ea346800cb7ddbe0 to your computer and use it in GitHub Desktop.
Save oskaremil/92b16fffce782687ea346800cb7ddbe0 to your computer and use it in GitHub Desktop.
Remove pre-installed Windows 10 apps
#Set $true to remove Windows Mail and Windows Calendar
$removeMail = $null
# Remove 3D from Windows 10
Get-AppxPackage *3d* | Remove-AppxPackage
# Remove Camera from Windows 10
Get-AppxPackage *camera* | Remove-AppxPackage
# Remove Mail and Calendar from Windows 10
if($removeMail) {Get-AppxPackage *communi* | Remove-AppxPackage}
# Remove Money, Sports, News and Weather from Windows 10
Get-AppxPackage *bing* | Remove-AppxPackage
# Remove Groove Music and Film & TV from Windows 10
Get-AppxPackage *zune* | Remove-AppxPackage
# Remove People from Windows 10
Get-AppxPackage *people* | Remove-AppxPackage
# Remove Phone Companion from Windows 10
Get-AppxPackage *phone* | Remove-AppxPackage
# Remove Photos from Windows 10
Get-AppxPackage *photo* | Remove-AppxPackage
# Remove Solitaire Collection from Windows 10
Get-AppxPackage *solit* | Remove-AppxPackage
# Remove Voice Recorder from Windows 10
Get-AppxPackage *soundrec* | Remove-AppxPackage
# Remove Xbox from Windows 10
Get-AppxPackage *xbox* | Remove-AppxPackage
# The following error seems to be incorrect, because the app is actually uninstalled and did not fail:
# Remove-AppxPackage error in PowerShell on Windows 10
# Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment