Last active
April 23, 2022 23:19
-
-
Save datapush3r/faf4f2e2fa498487a9dee813786c7ddd to your computer and use it in GitHub Desktop.
Restore / Reinstall Microsoft Store App Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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