5

How to fix this error in windows 10 64 bit Home edition: Windows Store cache may be damaged. "Reset and open Windows Store" I have tried but nothing worked. enter image description here

enter image description here

enter image description here

enter image description here

1 Answers1

0

The first step to reset Windows Store cache is to run wsreset in cmd. Alternatively you may try to remove Store cache in: C:\Users\<username>\AppData\Local\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\LocalCache

If that doesn't help - you need to reinstall Windows Store app. Start elevated Powershell window (run as administrator) and run in it:

Get-AppxPackage *windowsstore* -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”} 

For more details read: https://www.thewindowsclub.com/youll-need-a-new-app-to-open-this-ms-windows-store

Hardoman
  • 1,092