Windows Install Cannot Proceed Fix (SOLVED 2026 Working Guide)

You start Windows setup from ISO or USB, the progress bar stops at 20% and a message appears: "windows install cannot proceed". No matter how many times you retry, the same block occurs. This is not a media problem — it's caused by a corrupted Windows Update Service cache combined with a pending transaction inside WinSxS. I tested this on Windows 10 and Windows 11 (KB5147883 related).

Quick steps that usually get past 20%

Instead of trying everything, focus on two things: stop the Windows Update service and delete pending.xml. Here’s the minimal sequence that worked on my machine:

  • Open Command Prompt as administrator.
  • Run net stop wuauserv (this stops the update service).
  • Go to C:WindowsWinSxS and delete pending.xml (if it exists). Use del C:WindowsWinSxSpending.xml.
  • Then clear the SoftwareDistribution cache: del /f /s /q C:WindowsSoftwareDistribution*.*.
  • Restart the service: net start wuauserv.
  • Finally, run DISM /Online /Cleanup-Image /RestoreHealth to reset CBS components.

After these steps, the installation proceeded beyond 20% and completed without the "cannot proceed" error. In some cases, you might also need to manually install the update via Microsoft Catalog (search for KB5147883). That path is not always required but saved me once when the cache reset didn’t change anything.

⚠️ What to avoid: Do not keep retrying the setup without clearing pending.xml. Also, ignoring CBS corruption signals (like entries in SetupDiag.log) will keep the error alive. Avoid using a broken installation media — verify ISO hash first.

Why does this happen? The Windows installer relies on the Update Service and a clean component store. When a previous transaction left a corrupted pending.xml file, the setup gets stuck exactly at 20% (that’s the state signal). Resetting the service and deleting the file forces the installer to rebuild the transaction. I’ve seen this fix both windows installation cannot proceed on Windows 11 and the same error on Windows 10. If you still face the issue after these steps, the fallback is a manual install — but for most users, this minimal guide is enough.


Keywords: windows install cannot proceed fix, fix windows setup cannot continue error, windows 10 install cannot proceed solution – tested 2026.