Skip to content
Person troubleshooting software on a laptop

App Won’t Install on Windows 11? Fix Download and Installer Errors

Solve Windows 11 install failures — 0x8007xxxx errors, blocked MSI/EXE installers, Microsoft Store glitches, and missing admin rights.

9 min readWindows install, Microsoft Store, MSI

The download finishes. You double-click. Windows throws a vague error, the progress bar dies at 0%, or Microsoft Store sits on Pending forever. Fix the install path — do not jump to a full Windows reset.

Create a restore point before deep repairs. Ignore “installer booster” ads; prefer official redistributables and the steps below.

Identify the failure type

Situation Path
.exe / .msi from a website Desktop installer section
Microsoft Store / Xbox app Store section
Error codes 0x80070xxx, 0x80073xxx Match table below
“Administrator permission required” Elevation / account
Installer missing VCRUNTIME / .dll Runtimes
Everything fails after an update Update stuck / 25H2

Universal checks (do these first)

  1. Free space — aim for 10–20 GB free on C: (speed up Windows 11 Storage Sense helps)
  2. Re-download from the vendor’s official site — partial downloads corrupt silently
  3. Unblock the file: right-click installer → Properties → tick Unblock if present → Apply
  4. Run as administrator (trusted apps only)
  5. Temporarily pause third-party antivirus that sandboxes every EXE
  6. Confirm date/time are correct (Store and HTTPS installs care)

If Controlled folder access blocked a legitimate installer, allowlist it via ransomware protection settings — after you confirm the publisher.

Common error codes

Code / message Typical meaning What to try
0x80070005 Access denied Admin run, folder permissions, CFA allowlist, AV
0x80070070 Disk full Free space; clean %TEMP%
0x80070652 Another install in progress Reboot; end setup.exe; restart Windows Installer
0x80073CF9 / Store corrupt Package install fail wsreset, repair Store, free space
0x80072EFE / 0x80072EE7 Network Flush DNS (guide), retry wired
SmartScreen blocked Unknown reputation Prefer signed official builds; More info → Run anyway only if sure
App installer disabled Policy / Sideload off Settings → Apps → Advanced app settings

Microsoft Store stuck or failing

  1. Settings → Apps → Installed apps → Microsoft Store → Advanced options
    • Repair, then Reset if needed
  2. Run Win + R → wsreset.exe
  3. Sign out of Store → sign in again (Microsoft account glitches: no internet sign-in)
  4. Settings → System → Troubleshoot → Other troubleshooters → Windows Store Apps
  5. Check Settings → System → Date & time → set automatically
  6. Disable VPN briefly if Store cannot reach CDN (VPN setup)

For sideloading / unsigned packages (advanced):

Settings → Apps → Advanced app settings → Install apps from anywhere (wording varies) — only when you understand the risk.

Desktop MSI / EXE installers

Restart Windows Installer

  1. Win + R → services.msc
  2. Find Windows Installer
  3. Stop, then Start (Startup type: Manual is normal)

Elevated Command Prompt:

net stop msiserver
net start msiserver

Clear stuck installs

Reboot. Delete leftover temp safely:

  • %TEMP% — remove old installer folders you recognise
  • Avoid deleting random folders you do not understand

Then retry the installer from a folder on C: (not a flaky USB stick).

Install in clean boot

  1. msconfigServices → Hide all Microsoft services → Disable all
  2. Task Manager → Startup apps → Disable non-essentials
  3. Reboot → install → re-enable

This catches overlay tools and broken AV hooks.

Missing runtimes and frameworks

Install from Microsoft only:

  • Latest supported Visual C++ Redistributable (both x64 and x86 often needed)
  • .NET Desktop Runtime versions the app lists
  • WebView2 runtime for many modern apps

If the app is ancient, Compatibility Mode (right-click → Properties → Compatibility) can help — but prefer an updated build.

Repair the component store

When installers fail system-wide:

DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

Reboot. A reputable install-repair utility (affiliate card) can help when MSI/runtime stacks stay corrupted — download from the vendor’s real domain, not a coupon pop-up.

Smart App Control / SmartScreen

On fresh Windows 11 installs, Smart App Control may block unsigned tools.

  • Prefer Store or signed vendors
  • If you must install a niche unsigned utility you trust, adjust Smart App Control / SmartScreen only with eyes open — turning protections off permanently is how malware installs “successfully”

Never “fix” installs of pirated Office/Adobe. That path is how people need malware cleanup.

winget as a bypass (optional)

If the website installer is flaky but the package exists in Winget:

winget search AppName
winget install Vendor.AppName

Still requires network and a healthy App Installer package from the Store.

When to stop

Still failing after… Next step
Store reset + account refresh In-place Windows repair / OEM support
MSI service + DISM/SFC New local admin test account
Only one app fails Contact that vendor — may be OS build block
Many apps fail + other corruption BSOD / reset keep files

Most “won’t install” days end with free space, Unblock, wsreset, or a VC++ runtime — not a new laptop.

Store versus Win32 decision path

If the Store stuck on Pending but the vendor also offers a website installer, try the Win32/MSI path after you free space and run wsreset. Conversely, if SmartScreen blocks an unknown EXE, prefer the Store edition when it exists. For line-of-business apps, winget or IT-deployed packages beat random download mirrors. After Controlled folder access blocks a legitimate installer, allowlist the signed EXE (ransomware protection) only once you verify the publisher.

Runtime packs without the junk

Install Visual C++ and .NET redistributables from Microsoft’s own pages. Decline toolbars. If installers fail system-wide after a feature update, repair the component store with DISM/SFC and see 25H2 problems plus Update stuck. Never “fix” activation of pirated software — that is a malware delivery path (malware removal).

Temporary folder and long paths

Copy the installer to C:\Temp\Setup and run from there if Downloads is redirected, encrypted, or controlled by folder access. Very long nested paths break older MSI packages. Extract .zip installers fully before running setup.exe. Reboot between failed Visual Studio Build Tools / large runtime installs.

Frequently Asked Questions

Why does Windows say the app can’t be installed?

Common causes include blocked SmartScreen, corrupted downloads, full disks, Store cache issues, missing admin privileges, or broken Windows Installer services.

Is it safe to run as administrator?

For known publishers from official sites, yes. Never elevate random cracked installers.

Store downloads stuck at Pending?

Reset the Microsoft Store with wsreset, sign out/in, free disk space, then retry.

What is error 0x80070005?

Usually access denied — permissions, Controlled folder access, or security software blocking the installer.

Do I need Visual C++ redistributables?

Many desktop apps do. Install the current supported x64/x86 packages from Microsoft if the installer names missing DLLs or VC++ runtimes.