Restore Microsoft Store application in Windows 10
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Island
--
Chapters
00:00 Restore Microsoft Store Application In Windows 10
01:18 Answer 1 Score 1
02:09 Accepted Answer Score 21
04:17 Answer 3 Score 9
05:18 Answer 4 Score 1
06:57 Thank you
--
Full question
https://superuser.com/questions/949112/r...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows10
#avk47
ACCEPTED ANSWER
Score 21
So, the Windows Store is now back with me. As far as there was no complete solution in any single answer, here is my solution. Thanks for all who participated.
What you'll need
The installed Windows 10 with apps (further it will be references as "good windows"). You may use "friends computer". I used the VirtualBox virtual machine and an appropriate setup image. There is no need for license key for this: Win10 can be setup without key and activation, it'll be enough for this solution.
Step1
Take the ownership of "C:\Program Files\WindowsApps" folder as adviced here.
Step2
Open WindowsApps folder. Check, if there are next folders:
- Microsoft.VCLibs.140.00_14.0.22810.0_x64__8wekyb3d8bbwe
- Microsoft.VCLibs.140.00_14.0.22810.0_x86__8wekyb3d8bbwe
- Microsoft.NET.Native.Runtime.1.0_1.0.22929.0_x64__8wekyb3d8bbwe
- Microsoft.NET.Native.Runtime.1.0_1.0.22929.0_x86__8wekyb3d8bbwe
- Microsoft.WindowsStore_2015.7.1.0_x64__8wekyb3d8bbwe
- Microsoft.WindowsStore_2015.701.14.0_neutral_~_8wekyb3d8bbwe
If some of them are not presented there - copy missing ones from good windows and copy here.
Note1. For those who are in italic: I'm not sure that they are required, I processed all of them, may be they are not required.
Note2. For WindowsStore folders there may be another version, as it can be seen in @Fase answer.
Step 3
Open Windows Powershell.
Register every folder (one by one, except the last one!) in the order they are presented in above list with the next command:
Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\*FOLDER*\AppxManifest.xml"
Example:
Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\Microsoft.WindowsStore_2015.7.1.0_x64__8wekyb3d8bbwe\AppxManifest.xml"
You'll be close to success if the command with WindowsStore will give no errors. Others may return errors if they were allready registered.
Step 4
If Step 3 was successfull, you'll be able to find (Press WindowsKey then type Store) the Store application in the Start Menu.
Try to start it. If it will work - congratulations. If it will be shown for a while and then closed - see Step 5.
Step 5
Grant permissions for "ALL APPLICATION PACKAGES" account to WindowsApps folder as adviced here.
That's all Folks!
ANSWER 2
Score 9
I was finally able to fix this. It's actually quite funny. I upgraded Windows 10 to Windows 10.
- Insert the disc or create and mount the iso
- You can download it here
- I was able to upgrade to Windows 10 from other OS's using this tool directly, but that did not work from 10 to 10
- Chose "Download and install updates (recommended)"
- Accepted agreement
- Chose "Keep Windows settings, personal files, and apps"
After the "upgrade" you'll have the Store and all other default apps back
It reverted the two windows updates I had received but then they downloaded and installed again just fine. I imagine this would get more risky as more updates come out in the future.
After all of that was done, I ran these commands in an admin PowerShell to strip off everything but the Store and Calculator:
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.WindowsCalculator*"} | Remove-AppxPackage
Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.WindowsCalculator*"} | Remove-AppxProvisionedPackage -online
ANSWER 3
Score 1
I managed to get the Windows Store back with the following command in Powershell:
Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\Microsoft.Window sStore_2015.722.24.0_neutral_~_8wekyb3d8bbwe\AppxMetadata\AppxBundleManifest.xml "
If the command above doesn't work, you may need to take ownership of the WindowsApps folder and explore and find your App Manifest file for Windows Store.
How to get access to C:\Program Files\WindowsApps?
To re-add all default apps, take a look at this: https://thomas.vanhoutte.be/miniblog/reinstall-default-build-in-windows-10-apps/
ANSWER 4
Score 1
For Windows 10, although the above did not work, this was very helpful in getting to following solution for me to restore WindowsStore which just blinked and did not open since Windows 10 was installed as upgrade to Windows 8.1 Pro.
First I logged on as Administrator and checked the hidden folder under C:\Program Files\WindowsApps\ to see that the file had a new updated version of Windows Store. As of August 29th, I had "Microsoft.WindowsStore_2015.8.25.0_x64__8wekyb3d8bbwe" as latest version and still had the separate earlier version with name "...2015.8.3.0._x64"
Then I right click Start icon select Command Prompt (Admin) at prompt type "powershell" without quotes and hit enter then did following: Step 1 change directory PS C:\Windows\system32>cd c:\ Step 2 enter command with new file path PS C:>Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsStore_2015.8.25.0_x64__8wekyb3d8bbwe\AppxManifest.xml" -DisableDevelopmentMode
If file path not recognized then here are some tips (and where I went wrong) first check that you have a space between "Program" and "Files" in the command line, second check that you have two underscores before "8wekyb3...." and one underscore between "WindowsStore" and "2015" and space before and after "-register". Good luck, this was two weeks of effort but now Windows Store fully functional.