How to Uninstall Built-In Apps of Windows

Uninstalling Built-in Apps

With a PowerShell cmdlet, you can uninstall most of the built-in apps—even those that don’t normally have a “Uninstall” option. However, this trick will not allow you to remove some of the most important built-in apps, such as Cortana and Microsoft Edge. If you try, you will receive an error message stating that they cannot be removed.

  1. Start PowerShell as an administrator. Press Windows+X, then select “Windows PowerShell (Admin)” from the Power User menu.
  2. To remove the apps you don’t want on your Windows 10 system, copy and paste one or more of the following commands into the PowerShell prompt, pressing Enter after each command:

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

References:

https://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/#:~:text=Just%20right%2Dclick%20an%20app,select%20the%20%E2%80%9CUninstall%E2%80%9D%20option.

https://stackhowto.com/wp-content/uploads/2021/10/How-to-Remove-Windows-10s-Built-in-Apps-800×445.png

Leave a Comment

Your email address will not be published. Required fields are marked *