Fix App Installer Issues

How to repair, reset, re‑register, or reinstall the Windows App Installer (works for Windows 10 and 11).
Back to Help page

1) Confirm App Installer is installed & up to date

Direct Store page: App Installer

2) Repair or Reset App Installer

Windows 10 & 11:

  • Open Settings → Apps → Installed apps.
  • Find App InstallerAdvanced 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

7) Reinstall App Installer from Microsoft Store

If repair/reset didn’t help, reinstall:

  1. Uninstall App Installer (if allowed) from Settings → Apps.
  2. Install the latest version from the Store: App Installer.
  3. 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

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.