Windows · Updates · Fix Guide
You click "Check for updates", wait ten minutes, and come back to an error code and a progress bar stuck at zero. Or the update downloads fine, installs for an hour, and then quietly rolls itself back like nothing happened. Either way, the machine is no safer than when you started.
The good news: almost every Windows update failure has one of five causes, and each has a reliable fix that uses only tools already built into Windows. No third-party software needed.
⚡ Quick Answer — Start Here
Open Task Manager → Performance → Disk. If it is near 100% while doing nothing, fix disk space first. Then:
- Run Windows Update Troubleshooter (Settings → System → Troubleshoot)
- Reset Update Components via Command Prompt
- Run DISM → then SFC in that order
First: Match Your Situation
| What you see | Most likely cause | Start here |
|---|---|---|
| Error code during download | Corrupted update cache | Fix 3 |
| Installs then rolls back silently | Damaged system files | Fix 5 → Fix 6 |
| Stuck at 0% or never starts | Update service not running | Fix 2 → Fix 3 |
| Fails only on this one update | Specific patch conflict | Fix 4 → Fix 7 |
| Drive nearly full | No space to extract files | Fix 4 first |
Common Windows Update Error Codes
| Error Code | What it means | Fix to try first |
|---|---|---|
| 0x80070002 | Cannot find the specified file | Fix 3 |
| 0x80070003 | Cannot find the specified path | Fix 3 |
| 0x80070005 | Access denied | Fix 2 → Fix 5 |
| 0x8024402F | Update service not running | Fix 2 |
| 0x80244022 | Internet connectivity issue | Check connection → Fix 2 |
| 0x80080005 | Server execution failed | Fix 3 → Fix 5 |
Before You Start — 2 Minute Checklist
- At least 15–20 GB free on C: drive
- Laptop plugged into power — do not run updates on battery
- Stable internet connection
- External USB drives and printers disconnected
- Important files backed up
The 7 Fixes — In Order
Fix 1 — Restart Properly and Wait
DO THIS FIRST · 5 min · No data loss
A feature update is not finished when the desktop reappears. Windows continues processing in the background for hours, and if you interrupt it or put the machine to sleep the update stalls. Most "failed" updates are actually still running.
- Plug the PC into power and leave it awake and signed in for 2–3 hours.
- Restart normally, then restart a second time.
- Go to Settings → Windows Update and install any remaining updates including Optional ones.
✅ Verify it worked: Settings → Windows Update shows "You're up to date" with no pending items.
Fix 2 — Run the Windows Update Troubleshooter
HIGH IMPACT · 5 min · No data loss
Windows has a built-in tool that automatically detects and repairs the most common update failures — stuck services, corrupted queues, and broken connections to Microsoft's servers.
Windows 11:
- Open Settings → System → Troubleshoot → Other troubleshooters
- Find Windows Update and click Run
- Follow the on-screen steps and allow it to apply any fixes it finds
- Restart and try updating again
Windows 10:
- Open Settings → Update & Security → Troubleshoot → Additional troubleshooters → Windows Update → Run the troubleshooter
✅ Verify it worked: The troubleshooter reports it fixed something, or the update installs cleanly on the next attempt.
Fix 3 — Reset Windows Update Components
HIGH IMPACT · 10 min · No data loss
The update cache folder (SoftwareDistribution) can become corrupted — especially after an interrupted download or a power cut mid-update. Renaming it forces Windows to create a clean one and re-download only what it needs.
- Click Start, search for Command Prompt, right-click it and choose Run as administrator
- Run each command below, pressing Enter after each one:
net stop wuauserv net stop cryptSvc net stop bits net stop msiserver ren C:\Windows\SoftwareDistribution SoftwareDistribution.old ren C:\Windows\System32\catroot2 catroot2.old net start wuauserv net start cryptSvc net start bits net start msiserver
- Restart the PC and try Windows Update again
⚠️ Note: The old SoftwareDistribution.old folder can be deleted later from File Explorer once updates are working — it is just a renamed backup.
✅ Verify it worked: Windows Update starts downloading without an error code.
Fix 4 — Free Up Disk Space
HIGH IMPACT · 10 min · No data loss
A drive with less than 10–15 GB free cannot extract update files, which causes silent rollbacks and download errors. This is one of the most common causes people miss.
- Open Settings → System → Storage and click Temporary files
- Tick Temporary files, Delivery Optimisation Files, Windows Update Cleanup, and Recycle Bin
- Click Remove files
- Open Settings → Apps → Installed apps, sort by size, and uninstall anything you no longer use
- Turn on Storage Sense to prevent this recurring
✅ Verify it worked: Settings → Storage shows at least 15 GB free on C:. Try the update again immediately after.
Fix 5 — Repair System Files (DISM then SFC)
HIGH IMPACT · 30–40 min · No data loss
If an update rolls back silently without an error, or the same update keeps failing, your Windows component store is likely damaged. These two built-in commands repair it — but the order matters. DISM repairs the source, SFC then repairs your installation from it.
- Open Command Prompt as Administrator
- Run DISM first — needs internet connection, can take up to 20 minutes:
DISM /Online /Cleanup-Image /RestoreHealth
- Wait for it to reach 100% and report success
- Then run SFC:
sfc /scannow
- Restart, then if SFC reported repairs, run it once more to confirm it comes back clean
⚠️ Important: Never run SFC before DISM. SFC repairs from the component store — if that store is damaged, SFC will report errors it cannot fix.
✅ Verify it worked: SFC reports "did not find any integrity violations" or "successfully repaired". Try updating again after the restart.
Fix 6 — Update or Roll Back Drivers
MEDIUM · 15 min · No data loss
An outdated or newly-updated driver — especially for storage or chipset — can block Windows Update from completing. This is particularly common after a previous Windows update replaced a vendor driver with a generic Microsoft one.
- Press Win + X → Device Manager
- Look for any device with a yellow warning triangle
- For display, storage and chipset drivers: download from your laptop or motherboard manufacturer's support page for your exact model — not from third-party sites
- If a driver was recently updated and problems started immediately after, right-click the device → Properties → Driver tab → Roll Back Driver
- Restart and try updating again
✅ Verify it worked: Device Manager shows no warning triangles and the Windows Update completes without the previous error.
Fix 7 — Use System Restore or Repair Install (Last Resort)
LAST RESORT · 1–2 hours
If nothing above worked, two clean exit options remain. Try System Restore first — it is faster and keeps all your files and apps.
System Restore:
- Click Start and search for Create a restore point
- Click System Restore and choose a restore point from before the update problems started
- Follow the steps — the PC restarts and reverts
Repair Install (keeps files and apps):
- Download the Windows 11 Installation Assistant from Microsoft's official download page
- Run it and choose Keep personal files and apps
- Let it complete — this replaces Windows system files without touching your data
⚠️ Back up important files before either option. System Restore is safe, but a repair install has a small chance of needing a second run.
✅ Verify it worked: Windows Update runs cleanly after the restore or repair install completes.
Quick Reference — All 7 Fixes
| # | Fix | Best for | Time |
|---|---|---|---|
| 1 | Restart and wait | Everyone — start here | 5 min |
| 2 | Update Troubleshooter | Stuck downloads, service errors | 5 min |
| 3 | Reset Update Components | Error codes, corrupted cache | 10 min |
| 4 | Free up disk space | Silent rollbacks, no space | 10 min |
| 5 | DISM then SFC | Repeated rollbacks, damaged files | 30–40 min |
| 6 | Update or roll back drivers | Errors after driver changes | 15 min |
| 7 | System Restore or Repair Install | Nothing else worked | 1–2 hours |
Mistakes That Waste Time
- Running SFC before DISM. SFC cannot repair what it reads from a damaged store. Always DISM first.
- Deleting SoftwareDistribution manually without stopping services first. Windows will recreate a broken version. Use Fix 3's commands in order.
- Installing a "Windows repair" tool from the internet. Every fix in this guide uses built-in Windows commands. Third-party tools add risk without adding value.
- Interrupting an update mid-install. A forced shutdown during an update is one of the most reliable ways to corrupt system files.
- Ignoring disk space. Check free space first — it takes 10 seconds and fixes more problems than any command.
Tips to Prevent Update Failures
- Keep at least 20 GB free on C: at all times
- Leave the PC awake and plugged in after major updates — let it finish overnight
- Install updates from official manufacturer sites only
- Create a System Restore Point before major feature updates
- Use Storage Sense to automatically clear update leftovers
Frequently Asked Questions
Can I skip Windows updates?
You can pause them for up to 5 weeks in Settings. Skipping them permanently leaves known security vulnerabilities open — which makes the PC slower and less safe over time, not faster.
Is it safe to run DISM and SFC?
Yes. Both are official Microsoft tools built into every Windows installation. They do not touch your personal files, apps or settings — they only repair Windows system files.
Why does the same update keep failing?
Usually a damaged component store (Fix 5) or a driver conflict (Fix 6). Run DISM and SFC first. If the same error returns after that, check Device Manager for warning triangles.
Will a repair install delete my files?
No — a repair install using "Keep personal files and apps" leaves your documents, photos and installed programs intact. Only Windows system files are replaced. Back up anyway as a precaution.
Do I need third-party software to fix update errors?
No. Every fix in this guide uses tools already in Windows. Third-party "PC repair" tools rarely fix update failures and often add new problems.
Related Fixes
- Windows 11 Slow After an Update? 21 Fixes
- Windows 11 Slow Performance — 9 Fixes
- WiFi Connected But No Internet — 9 Fixes
Which fix worked for you? Leave a comment with your Windows version and error code — it helps the next reader skip straight to the right step.