P
PhantomWhiskers
I was trying to fix an issue where my Windows Store wouldn't download or update any apps which was preventing me from opening certain programs. I followed the steps listed by Vijay_Verma's answer in this thread Windows 10 Store won't download apps and steps 1-4 didn't fix the issue.
I went to step 5 to try uninstalling and reinstalling the store, and ran "Get-AppxPackage -allusers *WindowsStore* | Remove-AppxPackage", which uninstalled the store, but when I tried running "Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}" to reinstall the store, it is giving me an error message:
PS C:\WINDOWS\system32> Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF9, Install failed. Please contact your software vendor. (Exception from HRESULT: 0x80073CF9)
Unable to update all user store with package Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x86__8wekyb3d8bbwe with error: 0x80070057
NOTE: For additional information, look for [ActivityId] f5289a23-6961-0006-a53d-29f56169d601 in the Event Log or use the command line Get-AppPackageLog -ActivityID f5289a23-6961-0006-a53d-29f56169d601
At line:1 char:53
+ ... | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.I ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
I now have no Windows Store, and lost access to several programs and games on my PC, and need help getting Windows Store reinstalled. I would like to avoid doing a complete reinstall of Windows because it requires uninstalling several hundreds of gigs of programs that I don't want to have to re-download due to ISP data caps. I have attempted a system restore, which failed due to running out of disk space, and now system restore is showing no available restore points.
Continue reading...
I went to step 5 to try uninstalling and reinstalling the store, and ran "Get-AppxPackage -allusers *WindowsStore* | Remove-AppxPackage", which uninstalled the store, but when I tried running "Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}" to reinstall the store, it is giving me an error message:
PS C:\WINDOWS\system32> Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF9, Install failed. Please contact your software vendor. (Exception from HRESULT: 0x80073CF9)
Unable to update all user store with package Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x86__8wekyb3d8bbwe with error: 0x80070057
NOTE: For additional information, look for [ActivityId] f5289a23-6961-0006-a53d-29f56169d601 in the Event Log or use the command line Get-AppPackageLog -ActivityID f5289a23-6961-0006-a53d-29f56169d601
At line:1 char:53
+ ... | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.I ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
I now have no Windows Store, and lost access to several programs and games on my PC, and need help getting Windows Store reinstalled. I would like to avoid doing a complete reinstall of Windows because it requires uninstalling several hundreds of gigs of programs that I don't want to have to re-download due to ISP data caps. I have attempted a system restore, which failed due to running out of disk space, and now system restore is showing no available restore points.
Continue reading...