This all started when my Calculator app would not work anymore. When I clicked on it, it would open and close immediately.
I searched for a solution online, and I ran a powershell command to register all my modern apps. This was the command:
Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Only after the fact, I read that this command actually
breaks the modern apps on build 10586. Sure enough, all my modern apps are broken now.
I don't have any system restore points, and I have tried the following to fix my apps:
- sfc /scannow
- dism /online /cleanup-Image /restoreHealth
None of these worked.
So my question is, how can I get my modern apps to work again, without resetting or reinstalling Windows?