[SOLVED] Microsoft Store doesn't launches

altamash0007

Reputable
May 7, 2015
8
0
4,510
ms-windows-store: PurgeCaches
The app didn't start.

This error comes when I tried resetting the settings of Microsoft Store from the run
The problem started when I was in Windows 10 v1803 and after updating to v1903, the problem still persist.
 
Last edited:
Solution
for reseting windows store cache:
press Window key + R and type wsreset.exe then press Enter or OK button
once done, restart PC

for reinstall your store app:
open powershell
Code:
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
once done, restart PC

if store will be still corrupt, u may need to run all 3 following lines in CMD:
Code:
SFC /Scannow
Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /RestoreHealth
once done, restart PC
for reseting windows store cache:
press Window key + R and type wsreset.exe then press Enter or OK button
once done, restart PC

for reinstall your store app:
open powershell
Code:
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
once done, restart PC

if store will be still corrupt, u may need to run all 3 following lines in CMD:
Code:
SFC /Scannow
Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /RestoreHealth
once done, restart PC
 
Solution