If you encounter an error message containing a number and descriptive text, it may seem unclear at first. However, many of these errors have solutions. Follow the steps below to troubleshoot and resolve common issues.
NOTE: Not applicable for apps downloaded from mobisystems.com
Table of Contents
Use the following links to quickly navigate to different sections of this article.
- Common Errors
- Non-Microsoft Store apps are blocked
- Unsupported OS Architecture
- Out of disk space
- Non persistent profile
- Firewall not running
- Delivery optimization is enabled
- Log File Location
1. Common Errors
ERROR_INSTALL_OPEN_PACKAGE_FAILED
ERROR_INSTALL_FAILED
ERROR_INSTALL_REGISTRATION_FAILURE
ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED
0x8013153B
Why is this error happening?
We use an MSIX packaged application which is the latest standard from Microsoft.
Even if your app is not downloaded from the Microsoft Store, it still relies on Microsoft Store services for installation. That's because MSIX uses these services for secure deployment, management, and updates. This helps ensure the app is properly installed, maintained, and compatible with your system.
How to fix it?
1. Check Internet Connection
Ensure you have a stable internet connection, as issues with downloading or syncing may cause these errors.
2. Clear the Microsoft Store Cache
Press
Win + R, type wsreset.exe, and press Enter.This will reset the Microsoft Store cache and may fix any corrupted files affecting app installations.
3. Re-register the Microsoft Store
Press
Win + Xand select Windows PowerShell / Terminal (Admin).-
Type the following command and press Enter:
get-appxpackage *windowsstore* | remove-appxpackage -
Then, reinstall the Microsoft Store by running:
Get-AppxPackage -AllUsers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}