Troubleshooting Metro Apps
- Open an administrator command prompt, and type ‘powershell.exe’ (no quote marks)
- Copy and Paste each of the following commands in the same powershell command prompt in this exact order. Wait for each command to complete before typing the next one.
- close the command window when done
Get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmetadata\appxbundlemanifest.xml")}
$bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname
get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmanifest.xml")}
4. Open an administrator command prompt, and type ‘wsreset.exe’ (no quotes)
5. Attempt to re-launch the Store app and check for application updates