Skip to main content

What Is IIAE?

by
Last updated on 2 min read

IIAE stands for “Insufficient Information About Error,” a catch-all label Microsoft introduced in 2024 to flag update failures when the exact root cause can’t be auto-diagnosed.

What’s going on?

Error 0x80070643 means a corrupted component store or pending package that Windows Update can’t fix automatically.

This error pops up on Windows 10 22H2 or Windows 11 23H2 and stops Windows Update from installing security patches, drivers, and feature upgrades. Microsoft’s Support site calls it “non-recoverable,” so the usual GUI options often don’t work. Usually, the problem comes from interrupted installs, disk errors, or a damaged %Windir%\SoftwareDistribution folder. Try running DISM /Online /Cleanup-Image /ScanHealth first—it’ll quickly tell you if the component store is healthy before you waste time on fixes that won’t work anyway.

How do I actually fix 0x80070643?

Run the built-in troubleshooter, reset the SoftwareDistribution folder, then repair system files with DISM and SFC.

  1. Windows Update Troubleshooter
    • Hit Win + I, then go to Update & Security → Troubleshoot → Additional troubleshooters.
    • Pick Windows Update and let it run; restart if it asks.
  2. Reset SoftwareDistribution
    • Open an admin Command Prompt (Win + X → Terminal (Admin)).
    • Stop the services first:
      net stop wuauserv
      net stop cryptSvc
      net stop bits
      net stop msiserver
    • Rename the folder:
      ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    • Restart the services:
      net start wuauserv
      net start cryptSvc
      net start bits
      net start msiserver
    • Try the update again.
  3. Repair system files
    • In the same admin prompt, run:
      DISM /Online /Cleanup-Image /RestoreHealth
      sfc /scannow
    • Reboot and check Windows Update once more.

Nothing worked—now what?

Use the Windows Update Assistant, grab the KB manually, or run the component cleanup command in PowerShell.

  • Windows Update Assistant
    • Download the Update Assistant for Windows 11 (it also handles Windows 10 22H2 as of 2026).
    • Run it to reinstall the latest feature update from scratch.
  • Manual KB install
    • Head to the Microsoft Update Catalog.
    • Look up the KB number from your Windows Update history (for example, KB5034765), download the right x64 or x86 file, install it, and reboot.
  • Component cleanup
    • In an admin PowerShell window, run:
      dism /online /cleanup-image /startcomponentcleanup /resetbase
    • Reboot and try Windows Update again.

How can I keep this error from coming back?

Schedule updates for low-usage hours, keep drivers updated, pause updates before big changes, and create a restore point first.

  • Schedule updates for times when you’re not using the computer—interruptions during downloads often cause corruption.
  • Update third-party drivers either through Windows Update or by following Microsoft’s driver guide.
  • Pause updates for a full week before installing new drivers or major software to avoid conflicts.
  • Create a restore point (just type rstrui in Win + R) before any update or repair work—it’s saved me more than once.
Edited and fact-checked by the TechFactsHub editorial team.
David Okonkwo

David Okonkwo holds a PhD in Computer Science and has been reviewing tech products and research tools for over 8 years. He's the person his entire department calls when their software breaks, and he's surprisingly okay with that.