Thursday, January 3, 2019

How To Fix Windows 10 Store Not Working or Not Downloading Apps Problem | 3 Best Solutions

How To Fix Windows 10 Store Not Working or Not Downloading Apps Problem | 3 Best Solutions




Solution 1 : Open command prompt as administrator and then execute the below mention command...

PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"



Solution 2 : First open command prompt as administrator, then type "powershell" and then execute the below mention command...

Set-ExecutionPolicy Unrestricted


and then type...

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}


Solution 3 : Open powershell as administrator and then execute the below mention command...

((Get-ChildItem “HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications”) | Get-ItemProperty).Path | Add-AppxPackage -Register -DisableDevelopmentMode