📎 AI Summary:
The user initially reports issues with the Windows Store not functioning after upgrading from Windows 7, including a missing icon and error messages during re-registration attempts. Responses suggest the problem may relate to the upgrade method, with advice to reinstall via ISO instead of upgrading, which worked for others. The user eventually resolves the issue by running a different PowerShell command in an elevated session, successfully re-registering the Store. Overall, the thread discusses troubleshooting and resolving Windows Store registration issues after an upgrade, with a positive resolution.
The user initially reports issues with the Windows Store not functioning after upgrading from Windows 7, including a missing icon and error messages during re-registration attempts. Responses suggest the problem may relate to the upgrade method, with advice to reinstall via ISO instead of upgrading, which worked for others. The user eventually resolves the issue by running a different PowerShell command in an elevated session, successfully re-registering the Store. Overall, the thread discusses troubleshooting and resolving Windows Store registration issues after an upgrade, with a positive resolution.
Solution
Finally solved. Instead of running this command in cmd as admin:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I ran the following in a powershell as admin and this has solved the problem for me.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I ran the following in a powershell as admin and this has solved the problem for me.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
qavorq
Honorable Member
- Joined
- Jun 9, 2009
- Messages
- 25
Still no progress with this.
When I input the following into cmd using admin:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I get the following as a response:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could
not be registered.
error 0x80070002: While processing the request, the system failed to register
the windows.MRT extension due to the following error: The system cannot find
the file specified.
.
NOTE: For additional information, look for [ActivityId]
072b5501-cb61-0004-7963-2b0761cbd001 in the Event Log or use the command line
Get-AppxLog -ActivityID 072b5501-cb61-0004-7963-2b0761cbd001
At line:1 char:97
+ ... fest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manife ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\Program File...ppxManifest.xml:S
tring) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageMa
nager.Commands.AddAppxPackageCommand
Anyone able to help please?
When I input the following into cmd using admin:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I get the following as a response:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could
not be registered.
error 0x80070002: While processing the request, the system failed to register
the windows.MRT extension due to the following error: The system cannot find
the file specified.
.
NOTE: For additional information, look for [ActivityId]
072b5501-cb61-0004-7963-2b0761cbd001 in the Event Log or use the command line
Get-AppxLog -ActivityID 072b5501-cb61-0004-7963-2b0761cbd001
At line:1 char:97
+ ... fest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manife ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\Program File...ppxManifest.xml:S
tring) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageMa
nager.Commands.AddAppxPackageCommand
Anyone able to help please?
qavorq
Honorable Member
- Joined
- Jun 9, 2009
- Messages
- 25
Finally solved. Instead of running this command in cmd as admin:
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I ran the following in a powershell as admin and this has solved the problem for me.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
I ran the following in a powershell as admin and this has solved the problem for me.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}