Skip to content

Instantly share code, notes, and snippets.

@gszauer
Created December 24, 2018 21:42
Show Gist options
  • Save gszauer/37476fa69060c3ceefbd733b680e6c99 to your computer and use it in GitHub Desktop.
Save gszauer/37476fa69060c3ceefbd733b680e6c99 to your computer and use it in GitHub Desktop.
Windows Stuff
Here are the list of commands:
3D Builder: Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Alarms and Clock: Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Calculator: Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Calendar and Mail: Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Camera: Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get Office: Get-AppxPackage *officehub* | Remove-AppxPackage
Get Skype: Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage
Groove Music: Get-AppxPackage *zunemusic* | Remove-AppxPackage
Maps: Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Microsoft Solitaire Collection: Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage
Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage
News: Get-AppxPackage *bingnews* | Remove-AppxPackage
OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage
People: Get-AppxPackage *people* | Remove-AppxPackage
Phone Companion: Get-AppxPackage *windowsphone* | Remove-AppxPackage
Photos: Get-AppxPackage *photos* | Remove-AppxPackage
Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage
Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage
Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage
Xbox: Get-AppxPackage *xboxapp* | Remove-AppxPackage
----
stuff i uninstalled:
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
PS C:\Windows\system32> Get-AppxPackage *xboxapp* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *windowsstore* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *windowsphone* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *people* | Remove-AppxPackage
Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.
(Exception from HRESULT: 0x80073CFA)
error 0x80070032: AppX Deployment Remove operation on package
Microsoft.Windows.PeopleExperienceHost_10.0.17134.1_neutral_neutral_cw5n1h2txyewy from:
C:\Windows\SystemApps\Microsoft.Windows.PeopleExperienceHost_cw5n1h2txyewy failed. This app is part of Windows and
cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn
Windows Features on or off. However, it may not be possible to uninstall the app.
NOTE: For additional information, look for [ActivityId] 1f6a4652-9c12-0007-b9ce-6a1f129cd401 in the Event Log or use
the command line Get-AppxLog -ActivityID 1f6a4652-9c12-0007-b9ce-6a1f129cd401
At line:1 char:29
+ Get-AppxPackage *people* | Remove-AppxPackage
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand
PS C:\Windows\system32> Get-AppxPackage *onenote* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *zunemusic* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *3dbuilder* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *officehub* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *skypeapp* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *windowsmaps* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *zunevideo* | Remove-AppxPackage
PS C:\Windows\system32> Get-AppxPackage *bingnews* | Remove-AppxPackage
PS C:\Windows\system32>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment