How to restore Windows 10 Apps including Store
If you have somewho managed to delete any of your Windows 10 apps, including the Windows 10 Store app, then there is a quick and easy way to restore all the apps. Simply open PowerShell as an administrator and run the following code: Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”} This will then start the re-installation process: Once this …
How to restore Windows 10 Apps including Store Read More