Skip to content

Instantly share code, notes, and snippets.

@jahands
Created September 25, 2017 15:39
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 jahands/8e593296260eeb20268f758321b37e9b to your computer and use it in GitHub Desktop.
Save jahands/8e593296260eeb20268f758321b37e9b to your computer and use it in GitHub Desktop.
Removes a few apps that come with Windows 10. To use, copy/paste into PowerShell and hit Enter.
@(
'Microsoft.Messaging'
'Minecraft'
'Netflix'
'Microsoft.MicrosoftOfficeHub'
'Microsoft.OneConnect'
'Microsoft.Office.OneNote'
'Microsoft.People'
'Microsoft.WindowsPhone'
'Microsoft.Windows.Photos'
'Plex'
'Microsoft.SkypeApp'
'Microsoft.WindowsSoundRecorder'
'Solitaire'
'Microsoft.MicrosoftStickyNotes'
'Microsoft.Office.Sway'
'Twitter'
'Microsoft.XboxApp'
'Microsoft.XboxIdentityProvider'
'Microsoft.ZuneMusic'
'Microsoft.ZuneVideo'
'Microsoft.3DBuilder'
'Microsoft.WindowsAlarms'
'Autodesk'
'Microsoft.BingFinance'
'Microsoft.BingNews'
'Microsoft.BingSports'
'Microsoft.BingWeather'
'BubbleWitch'
'CandyCrush'
'Microsoft.CommsPhone'
'Dell'
'Dropbox'
'Facebook'
'Microsoft.WindowsFeedbackHub'
'Microsoft.Getstarted'
'Keeper'
'Microsoft.WindowsCommunicationsApps' # Mail & Calendar
'Microsoft.WindowsMaps'
'MarchofEmpires'
'McAfee'
) | ForEach-Object { Get-AppxPackage *$_* | Remove-AppxPackage }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment