windows install cannot continue fix FIX cannot continue windows setup cannot continue error fix

During installation, you might hit a 'cannot continue' error right around 42% progress. This usually happens when Windows Update Service and cache get out of sync, blocking the installer. Some users see this after a restart, with CBS.log entries referencing KB5147880.

Quick steps to get past the block

Try these actions in order. They’ve worked for many, though one path here hasn’t been fully verified yet.

  • Stop Windows Update related services
    Open Command Prompt as admin and run:
    net stop wuauserv
    net stop bits
  • Clear SoftwareDistribution cache
    Delete everything inside C:WindowsSoftwareDistributionDownload. If this fails, move to DISM (see below).
  • Restart update services
    net start wuauserv
    net start bits
  • Run DISM restore health
    DISM /Online /Cleanup-Image /RestoreHealth
    This often resolves lingering corruption that keeps the installer stuck.

After clearing the cache, if the installation still won't proceed, running DISM is the next logical step. In some tests, restarting services alone didn't fix it at first, but combined with DISM it did.

One method not fully validated yet: performing a repair install from the ISO. That’s a heavier approach but might be necessary if the above steps fail.

You may also run sfc /scannow after DISM, though it’s not always required. The error typically stops appearing once you pass the 42% mark and setup completes without the 'cannot continue' message.

Remember: don't skip clearing the cache, and avoid interrupting the installation while it's applying image files. Reusing corrupted install media will bring the error back.