Skip to content

Instantly share code, notes, and snippets.

@datapush3r
Last active April 23, 2022 23:19
Show Gist options
  • Save datapush3r/faf4f2e2fa498487a9dee813786c7ddd to your computer and use it in GitHub Desktop.
Save datapush3r/faf4f2e2fa498487a9dee813786c7ddd to your computer and use it in GitHub Desktop.
Restore / Reinstall Microsoft Store App Windows 10
# Press Windows Key + R then type “wsreset.exe” and hit enter.
# Open Powershell as Admin
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
# Open CMD as Admin
Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /RestoreHealth
Dism /Image:C:\offline /Cleanup-Image /RestoreHealth /Source:c:\test\mount\windows
Dism /Online /Cleanup-Image /RestoreHealth /Source:c:\test\mount\windows /LimitAccess
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment