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




Friday, November 2, 2018

How to Fix Windows 10 Store Not Working Problem Easily

How to Fix Windows 10 Store Not Working Problem Easily

If you are facing problem like windows 10 store not opening or not working then i will tell you 2 very easy solutions through which you can fix that problem.


Solution 1 : Open Command Prompt as a Administrator.

Command 1: Type "powershell" and then hit "Enter Key".

Command 2 : Type "Set-ExecutionPolicy Unrestricted" and then hit "Enter Key".

Command 3 : Type "Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}"
and then hit "Enter Key".

If this solution does not works for you then apply 2nd solution.


Solution 2 : Open Windows PowerShell as a Administrator.

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

and then hit "Enter Key".