How to reinstall and re-register all default Windows apps in Windows 10 [Tip]

All versions of Windows 10 come with universal apps out of the box called default or stock apps. You’ll notice many of these default apps available from Windows 10’s Start menu in the All Apps section. Apart from the Start menu, you won’t notice many of them unless you enter the Settings app where it lists you all of the names.

Some of these Windows 10 default apps can be uninstalled by clicking on the app name and then clicking on the “Uninstall” option from the Settings app, and others can be uninstalled by right-clicking on them from the Start menu and then choosing the “Uninstall” option from that menu instead. Not all default apps can be uninstalled these ways, but the remainder can be uninstalled by administrators from within the Windows PowerShell.

If the computer you are using doesn’t have the default apps that you wish it did because somebody has uninstalled the already, then you can get them back by using the guide below.

How to Reinstall and Re-Register All Windows Apps for Current Account Only

Open the Windows PowerShell and type ” Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}” (without the quotes I put on the end) and then hit the Enter key on your keyboard.

 It then tries to install all of the default apps for Windows 10 for the account you are currently logged in to.

 If one of the default apps is already installed on the computer, then you get shown the name of it in red.

How to Reinstall and Re-Register All Windows Apps for All Accounts

Open an elevated Windows Powershell window and then type “Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}” without the quotes again) and then hit the Enter key on the keyboard.

It will now install all of the default apps for Windows 10 on each account that is created on the computer.

How to Re-register a Specific App for Current Account

Open a Command Prompt window and then type the code associated with the app that you want restored.

3D Builder:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *3DBuilder*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Alarms & Clock:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsAlarms*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

App Connector:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *AppConnector*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Calculator:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsCalculator*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Calendar and Mail:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Camera:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsCamera*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Candy Crush Soda Saga:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *CandyCrushSodaSaga*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Connect:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *PPIProjection*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Contact Support:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *ContactSupport*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Cortana:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Windows.Cortana*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Feedback Hub:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsFeedbackHub*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Get Office:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftOfficeHub*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Get Started:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *GetStarted*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Groove Music:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *ZuneMusic*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Mail and Calendar:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Maps:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsMaps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Messaging:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Messaging*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Microsoft Edge:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftEdge*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Microsoft Solitaire Collection:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftSolitaireCollection*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Money:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingFinance*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Movies & TV:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *ZuneVideo*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

News:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingNews*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

OneNote:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Office.OneNote*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Paint 3D:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MSPaint*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

People:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *People*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Phone:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *CommsPhone*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Phone Companion:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsPhone*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Photos:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Photos*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Settings:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *immersivecontrolpanel*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Skype:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *SkypeApp*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Sports:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingSports*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Sticky Notes:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftStickyNotes*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Store:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsStore*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Sway:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Office.Sway*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Twitter:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Twitter*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Voice Recorder:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsSoundRecorder*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Weather:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingWeather*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Xbox:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *XboxApp*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Xbox One SmartGlass:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *XboxOneSmartGlass*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Microsoft doesn’t make getting rid of all the default apps very easy in Windows 10 because it would prefer you keep them there and try to make use of them. If you do manage to remove some or all of them, you’ll need to refer to the above steps and make use of the Windows PowerShell or the Command Prompt to get them back. Anytime you want to have an impact on all accounts is going to require you to use the elevated version of the Windows PowerShell before the Windows OS lets you do that. However, you are always able to put the default apps back on your account without the elevated version.

Related Posts