Skip to content

Instantly share code, notes, and snippets.

@BinarSkugga
Last active September 6, 2020 20:08
Show Gist options
  • Save BinarSkugga/70b62d44b1c7080319ff6901a89bb302 to your computer and use it in GitHub Desktop.
Save BinarSkugga/70b62d44b1c7080319ff6901a89bb302 to your computer and use it in GitHub Desktop.
Removes unecessary appx packages off of windows 10. Some of them might require to uncheck isInbox in the appx database. NOTE: The description of shitty is subjective, some of these apps might be useful to you.
Get-AppxPackage *WindowsCamera* | Remove-AppxPackage
Get-AppxPackage *OfficeHub* | Remove-AppxPackage
Get-AppxPackage *SkypeApp* | Remove-AppxPackage
Get-AppxPackage *GetStarted* | Remove-AppxPackage
Get-AppxPackage *WindowsMaps* | Remove-AppxPackage
Get-AppxPackage *SolitaireCollection* | Remove-AppxPackage
Get-AppxPackage *Zune* | Remove-AppxPackage
Get-AppxPackage *OneNote* | Remove-AppxPackage
Get-AppxPackage *WindowsPhone* | Remove-AppxPackage
Get-AppxPackage *SoundRecorder* | Remove-AppxPackage
Get-AppxPackage *Bing* | Remove-AppxPackage
Get-AppxPackage *Xbox* | Remove-AppxPackage
Get-AppxPackage *3D* | Remove-AppxPackage
Get-AppxPackage *MSPaint* | Remove-AppxPackage
Get-AppxPackage *Feedback* | Remove-AppxPackage
Get-AppxPackage *GetHelp* | Remove-AppxPackage
Get-AppxPackage *king.com* | Remove-AppxPackage
Get-AppxPackage *Disney* | Remove-AppxPackage
Get-AppxPackage *Empire* | Remove-AppxPackage
Get-AppxPackage *Dolby* | Remove-AppxPackage
Get-AppxPackage *communicationsapps* | Remove-AppxPackage
Get-AppxPackage *Advertising* | Remove-AppxPackage
Get-AppxPackage *Cortana* | Remove-AppxPackage
Get-AppxPackage *Spotify* | Remove-AppxPackage
Get-AppxPackage *Autodesk* | Remove-AppxPackage
Get-AppxPackage *Alarms* | Remove-AppxPackage
Get-AppxPackage *StickyNotes* | Remove-AppxPackage
Get-AppxPackage *Messaging* | Remove-AppxPackage
@Ferdzz
Copy link

Ferdzz commented May 1, 2019

You removed Messaging twice there at the end

@BinarSkugga
Copy link
Author

You removed Messaging twice there at the end

Fixed

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