1) Confirm App Installer is installed & up to date
- Open Microsoft Store.
- Search for “App Installer”.
- If you see Install, click it. If you see Update, apply it.
- Restart your PC.
Direct Store page: App Installer
2) Repair or Reset App Installer
Windows 10 & 11:
- Open Settings → Apps → Installed apps.
- Find App Installer → Advanced options.
- Click Repair. If the problem remains, click Reset.
- Restart and try your .msix/.msixbundle again.
3) Clear Microsoft Store cache
Clears stale package data and helps updates land cleanly.
Press Win+R, type wsreset.exe
, press Enter.
When the Store reopens, check App Installer for updates again.
4) Re‑register App Installer (PowerShell, Admin)
Rebuilds the registration of App Installer without a full reinstall.
Get-AppxPackage Microsoft.DesktopAppInstaller -AllUsers ^| Foreach {
Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"
}
Open Windows PowerShell (Admin) from the Start menu, then paste the command above. Reboot after it completes.
5) System file repairs (PowerShell, Admin)
Fixes underlying component or file corruption that can trigger “File system error” dialogs.
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Reboot after both commands reach 100%.
6) Check sideloading & policies
- Windows 10: Settings → Update & Security → For developers → Sideload apps = On.
- Windows 11: Settings → Privacy & security → For developers (sideloading is allowed by default; Developer Mode is not required).
- On corporate devices, ask IT to ensure MSIX installs aren’t blocked by Group Policy and that Microsoft Store Install Service and Windows Update services are running.
7) Reinstall App Installer from Microsoft Store
If repair/reset didn’t help, reinstall:
- Uninstall App Installer (if allowed) from Settings → Apps.
- Install the latest version from the Store: App Installer.
- Reboot and try your installer again.
Why these steps work
The App Installer app integrates with package deployment services. Corrupted app data, stale Store caches, missing registrations, or policy blocks can prevent MSIX bundles from launching. Repair/reset clears app state; wsreset refreshes the Store; re‑register restores the app’s manifest; DISM/SFC repair the underlying component store; and reinstall guarantees you have a clean, current App Installer build.
What to send support if it still fails
- Screenshots of the error dialog.
- Windows version: e.g., “Windows 10 22H2 (19045.x)” or “Windows 11 24H2 (26100.x)”.
- Whether the failure occurs on double‑click or during
Add-AppxPackage
. - Any error text from PowerShell.
Are the steps the same on Windows 11? Yes — the fixes are effectively the same. The main difference is the Settings navigation:
Windows 10: Settings → Apps → Installed apps → App Installer → Advanced options
Windows 11: Settings → Apps → Installed apps → App Installer → Advanced options (same path), and “For developers” moved to Settings → Privacy & security → For developers.