Advertisements

How to Uninstall and Reinstall Windows 10 Built-in Apps

 In Canada Web Developer, News

Windows 10 includes a variety of universal apps that are bundled with the operating system, and Microsoft decided to make it a bit complicated to remove them.

You probably don’t want to do this. These apps take up very little space on your device so it’s best to just ignore them if you don’t want to use them. But, if you really want to uninstall them, you can. If you’ve already uninstalled included apps, you can get them all back with a single command.

Get Office, Get Skype, Get Started, Microsoft Solitaire Collection, Money, News, Phone Companion, and Sports apps, allow you to uninstall them in the normal way. Just right-click an app and select “Uninstall”. (On a touch screen, long-press the app instead of right-clicking.)

You can also uninstall bloatware apps your PC manufacturer has installed using this method. However, Microsoft’s included Windows 10 apps can’t be removed in this way.

You can uninstall most of the built-in apps with Windows PowerShell.

Windows PowerShell is a task automation and configuration management framework from Microsoft, consisting of a command-line shell and associated scripting language built on the .NET Framework

PowerShell provides full access to COM and WMI, enabling administrators to perform administrative tasks on both local and remote Windows systems.

How to Remove the Built In Universal Apps from Windows 10

First, open PowerShell as administrator. Open the Start menu, search for “PowerShell,” right-click the PowerShell shortcut, and select “Run as administrator.” Agree to the UAC prompt.

And now Copy and paste one or more of the following commands into the PowerShell prompt, pressing Enter after each one to remove the apps you don’t want on your Windows 10 system.

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 Windows Camera

Get-AppxPackage *windowscamera* | Remove-AppxPackage

Uninstall Get Office

Get-AppxPackage *officehub* | Remove-AppxPackage

Uninstall Get Skype

Get-AppxPackage *skypeapp* | Remove-AppxPackage

Uninstall Groove Music

Get-AppxPackage *zunemusic* | Remove-AppxPackage

Uninstall Windows Maps

Get-AppxPackage *windowsmaps* | Remove-AppxPackage

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 Photos

Get-AppxPackage *photos* | 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 Sports

Get-AppxPackage *bingsports* | Remove-AppxPackage

Uninstall Voice Recorder

Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Uninstall Weather

Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Xbox App

Get-AppxPackage *xboxapp* | Remove-AppxPackage

How to Reinstall All Built-in Universal Apps to Windows 10

If you decide you want the pre installed apps back, you can get them back with a single line of PowerShell code. Again, open a PowerShell window as Administrator. Copy and paste the following line into the PowerShell window and press Enter:

Reinstall All

Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

Advertisements
Recent Posts

Leave a Comment

Start typing and press Enter to search

Technology News, Advice and More | Web Solutions, Development Services, Cloud Hosting, Professional Web Site Installation Services and more by Canada Web DeveloperTechnology News, Advice and More | Web Solutions, Development Services, Cloud Hosting, Professional Web Site Installation Services and more by Canada Web Developer