How to Uninstall Unwanted Windows 10 Apps

For a long time, I delayed upgrading from Windows 8.1 to Windows 10 because I didn’t like many of the features and “improvements” that were included with Microsoft’s current OS. I eventually had to upgrade and have found many tweaks that can be made to Windows 10 that cut out the garbage and make it more Windows 8.1 and 7. This article is the first of several which will teach you how to do the same.

In years past, I installed a fresh copy of Windows and that was it. There were no bloatware programs installed by a PC manufacturer and there definitely weren’t any included on Windows. With Windows 10 that’s no longer the case. Microsoft includes all sorts of trialware, apps and other nuisances which I would never want. The kicker is that many of them cannot be removed by right-clicking the app and clicking “Uninstall”.

windows 10 start menu apps

The Get Office, Get Skype, Get Started, Microsoft Solitaire Collection, Money, News, Phone Companion, and Sports apps can all be removed by right clicking them and then clicking “Uninstall”. If Windows 10 downloads additional apps such as Candy Crush, FarmVille, TripAdvisor, Netflix, and Pandora, these too can be removed by clicking Uninstall.

There are many more that cannot be so easily removed but there is a way to remove them by using Windows PowerShell.

PowerShell Commands to Remove Windows 10 Apps

To use the following commands, you will need to open a PowerShell instance as an administrator. To get there, right-click on the Star menu and go to Windows PowerShell (admin). Click “Yes” when Windows prompts you if you want to allow the app to make changes.

windows 10 powershell shortcut

Copy a command in a shaded box below and paste the code inside the PowerShell window. Above each box is a description of what you are removing.

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

Keep in mind that a major Windows feature update may re-install these apps upon its installation. You may want to bookmark this page and the included Powershell commands for later reference if that occurs.