Advertisement
G4U55

How to restore Windows Store in Windows 10 after removing it

Apr 19th, 2016
2,208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. How to restore Windows Store in Windows 10 after removing it with PowerShell
  2. RECOMMENDED:
  3. Almost all users are removing all bundled Windows 10 apps because they are very poorly made and are practically of no use on a PC with mouse and keyboard. You can remove all the bundled apps at once as we showed earlier. Or you can remove apps individually. If you removed all apps and lost the Windows Store app as well, you might be unable to install new apps. Here is how to restore and reinstall Windows Store in Windows 10 after removing it with PowerShell.
  4.  
  5. To restore and reinstall Windows Store in Windows 10 after removing it with PowerShell, you need to do the following:
  6.  
  7. 1. Run PowerShell as Administrator.
  8. Open the Start menu (press Win key on the keyboard) and type Powershell. When it comes up in the search results, right click on it and choose "Run as administrator". Or you can also press Ctrl + Shift + Enter to open it as administrator. Opening PowerShell as administrator is important, otherwise, the commands you run will fail:
  9.  
  10. [img]http://imageshack.com/a/img922/6292/fv3wC3.png[/img]
  11.  
  12. 2. Type the following command in the PowerShell console:
  13.  
  14. [code]Get-Appxpackage -Allusers[/code]
  15.  
  16. 3. In the output, locate the Microsoft.WindowsStore entry. It was the last one for me. Look for the text PackageFamilyName.
  17.  
  18. [img]http://imageshack.com/a/img922/3529/GvumtX.png[/img]
  19.  
  20. Then run this PowerShell command, still elevated, replacing the ****** with the PackageFileName from above:
  21.  
  22. [code]Add-AppxPackage -register "C:\Program Files\WindowsApps\******\AppxManifest.xml" -DisableDevelopmentMode[/code]
  23.  
  24. For example, in my case it should be:
  25.  
  26. [code]Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsStore_8wekyb3d8bbwe\AppxManifest.xml" -DisableDevelopmentMode[/code]
  27.  
  28. This will put back the Store app. You can then install new apps that you actually need such as games without the useless pre-loaded apps for which desktop apps are a far better alternative.
  29.  
  30. If you get the error "access denied" or something like that, you might need to take ownership of the WindowsApps folder.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement