Skip to content

Instantly share code, notes, and snippets.

@icetee
Last active October 25, 2023 04:41
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save icetee/4bf10b808f4d7892bbc1 to your computer and use it in GitHub Desktop.
Save icetee/4bf10b808f4d7892bbc1 to your computer and use it in GitHub Desktop.
Windows 10 remove unnecessary applications
#Uninstall 3D Builder
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
#Uninstall Alarms and Clock
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
#Uninstall Calculator
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
#Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
#Uninstall Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage
#Uninstall Contact Support:
#This app can’t be removed.
#Uninstall Cortana:
#This app can’t be removed.
#Uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage
#Uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage
#Uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage
#Uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
#Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
#Uninstall Microsoft Edge:
#This app can’t be removed.
#Uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
#Uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
#Uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
#Uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage
#Uninstall OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage
#Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage
#Uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage
#Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage
#Uninstall Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
#Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
#Uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
#Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
#Uninstall Windows Feedback:
#This app can’t be removed.
#Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage
#UPDATE 1 - New Apps
#Uninstall Reader:
Get-AppxPackage *Reader* | Remove-AppxPackage
#Uninstall Messaging:
Get-AppxPackage *Messaging* | Remove-AppxPackage
#Uninstall CommsPhone:
Get-AppxPackage *CommsPhone* | Remove-AppxPackage
#Uninstall ConnectivityStore:
Get-AppxPackage *ConnectivityStore* | Remove-AppxPackage
#Uninstall Sway (Office):
Get-AppxPackage *Office.Sway* | Remove-AppxPackage
#UPDATE 2 - New Apps
#Uninstall Twitter:
Get-AppxPackage *Twitter* | Remove-AppxPackage
#Uninstall TuneInRadio
Get-AppxPackage *TuneInRadio* | Remove-AppxPackage
#Uninstall Netflix
Get-AppxPackage *Netflix* | Remove-AppxPackage
#Uninstall Feedback Hub
Get-AppxPackage *WindowsFeedbackHub* | Remove-AppxPackage
#Uninstall OneConnect
Get-AppxPackage *OneConnect* | Remove-AppxPackage
#Extras
#Uninstall Sticky Notes
#Get-AppxPackage *MicrosoftStickyNotes* | Remove-AppxPackage
#Remove installed Games (no install auto, only first click shortcut)
#Uninstall Asphalt 8 Airborne
#Get-AppxPackage *GAMELOFTSA.Asphalt8Airborne* | Remove-AppxPackage
#Uninstall Candy Crush Saga
#Get-AppxPackage *king.com.CandyCrushSodaSaga* | Remove-AppxPackage
#Remove Windows Features
#Uninstall Internet Explorer (IE) 11
Disable-WindowsOptionalFeature -Online -FeatureName Internet-Explorer-Optional-amd64
#UPDATE 3 - Anniversary Update
#Uninstall Appconnector
Get-AppxPackage *Appconnector* | Remove-AppxPackage
#Uninstall StorePurchaseApp
Get-AppxPackage *StorePurchaseApp* | Remove-AppxPackage
#Remove 3D objects in profile folder
Remove-Item $env:USERPROFILE"\3D Objects"
@mzfr
Copy link

mzfr commented May 9, 2021

Is there really no way to remove Microsoft edge?

@SegoCode
Copy link

SegoCode commented May 12, 2021

Is there really no way to remove Microsoft edge?

Go to C:\Program Files (x86)\Microsoft\Edge\Application\ {Version} \Installer
Run setup.exe --uninstall --system-level --verbose-logging --force-uninstall

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