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.
- 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.
- 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.
- Repair system files
- In the same admin prompt, run:
DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow
- Reboot and check Windows Update once more.
- In the same admin prompt, run: