Windows 10 Apps Won’t Open (part III)

Posted on Thu, 09/14/2017 - 08:00

Solution 7 – Reinstall the problematic app

If certain app won’t run on Windows 10, sometimes you just need to reinstall it. To do that, follow these steps:

  1. Open Start Menu and locate the problematic app.
  2. Right click it and choose Uninstall.
    uninstall-app
  3. After the app has been uninstalled, open Store app and try to download it again.

Solution 8 – Use PowerShell

If Store application cannot launch, you won’t be able to update any apps that won’t open, so it’s advised that you use PowerShell in order to fix this problem. To fix this issue, just follow these steps:

  1. Press Windows Key + S and type PowerShell. Find PowerShell on the list of results and right click it. Choose Run as administrator.
    powershell-run-as-admin
  2. When PowerShell starts, enter the following lines. Press Enter after each line and wait for it to finish before entering a new line of code:
    • 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”)}

Solution 9 – Perform Store cache reset

If you can’t open Store app, and there’s no way to update your apps, you might want to perform Store cache reset by following these steps:

  1. Open Command Prompt as administrator. To do that press Windows Key + X and choose Command Prompt (Admin).
    command-prompt-admin
  2. When Command Prompt starts, type wsreset.exe and press Enter to run it.
    wsreset-cmd
  3. Close Command Prompt and try launching the Store app and updating your apps.

Solution 10 – Use Command Prompt

  1. Start Command Prompt as administrator.
  2. When Command Prompt starts, enter the following command and press Enter to run it:
    • ren %windir%\System32\AppLocker\Plugin*.* *.bak
  3. Close Command Prompt and restart your computer.

Solution 11 – Make sure that Application Identity service is running

If you’re having problems with Windows 10 applications that won’t start, you might want to check if Application Identity service is running. To do that, follow these steps:

  1. Press Windows Key + R and type services.msc. Press Enter or click OK.
    run-services
  2. When Services window opens, find Application Identity service and double click it.
  3. When Application Identity Properties window opens, find Service status section.
    start-service
  4. If Service status is set to Stopped, click the Start button to start the service.
  5. Click Apply and OK to save the changes.
  6. Close Services window and restart your computer.

Share via:

EmailFacebookTwitterGoogleLinkedin

Other blog posts