⚡ Quick Answer
Error code 0x80070306 on Windows 11 means Windows Update failed because of corrupted update components or damaged system files. To fix it fast: open Command Prompt as Administrator and run sfc /scannow followed by DISM /Online /Cleanup-Image /RestoreHealth, then restart your PC and try the update again. If that doesn’t work, this full guide covers five more reliable methods — including a manual update install and repair reinstall.
📋 What’s in This Guide
- What Is Error 0x80070306 — and Why Does It Happen?
- Common Causes at a Glance
- Fix 1: Run the Windows Update Troubleshooter
- Fix 2: Repair System Files with SFC and DISM
- Fix 3: Clear the Software Distribution Folder
- Fix 4: Install the Update Manually from Microsoft Catalog
- Fix 5: Use the Repair Reinstall (No Data Loss)
- Fix 6: Last Resort — Fresh Windows 11 Install
- Frequently Asked Questions
- Get More Help
There are few things more frustrating than a Windows update that gets to 99% and then just… stops. You see “Install error — 0x80070306” and wonder what on earth went wrong. You try clicking Retry. Same result. You restart. Same result. You’re stuck in a loop.
If this is you right now, you’re not alone. This specific error has been appearing on hundreds of machines after cumulative updates like KB5079473 (March 2026) and KB5074109 (January 2026). We’ve put together this guide based on what’s actually worked — not just generic advice that sends you in circles.
Let’s walk through it, step by step, from the quickest fixes to the more thorough ones.
📌 Also dealing with Outlook errors? Check out our guide: How to Fix 657RX Outlook Error — Step-by-Step Guide
What Is Error Code 0x80070306 — and Why Does It Happen?
The error code 0x80070306 translates literally to: “One or more errors occurred while processing the request.” That’s Windows being vague — but technically, it means something in the update pipeline broke before the update could complete.
Think of it like a restaurant order that got lost between the waiter and the kitchen. The food was prepared (the update downloaded), but it never made it to your table (it failed to install). Something interrupted the delivery — and your job now is to figure out what.
This is not just a nuisance. Failing cumulative updates means your PC is missing important security patches. Don’t leave it unresolved for long — work through the fixes below until one sticks.
Common Causes at a Glance
Before jumping into fixes, here’s a quick look at the usual suspects behind this error:
| Cause | What It Means | Frequency |
|---|---|---|
| Corrupted Windows Update cache | Leftover broken files in the Software Distribution folder blocking the new install | Very Common |
| Damaged system files | Core Windows files are corrupted or missing — SFC and DISM can fix these | Very Common |
| Missing update prerequisites | The update needs an earlier component (SSU) that isn’t installed yet | Moderate |
| Component store (WinSxS) issues | Missing registry keys or component hydration problems after previous failed updates | Moderate |
| Third-party security software | Antivirus or VPN blocking the update installer mid-process | Less Common |
Fix 1: Run the Windows Update Troubleshooter
Always start here. Microsoft’s built-in troubleshooter automatically scans for common update issues and resets broken components. It takes about two minutes and has no risk.
- Press Windows + I to open Settings.
- Go to System → Troubleshoot → Other troubleshooters.
- Find Windows Update and click the Run button next to it.
- Let the tool scan and apply any fixes it finds automatically.
- Restart your PC, then go to Windows Update and try again.
✅ Works best when: The update failed due to a minor service interruption or a stuck Windows Update service. If your PC is otherwise healthy, this alone often resolves it.
Fix 2: Repair System Files with SFC and DISM
Based on real user reports in Microsoft Q&A and community forums, running these two commands back to back has solved the 0x80070306 error for the majority of affected users. This is the fix that actually works — and it usually takes under 15 minutes.
Here’s exactly what to do:
- Click Start, type cmd, right-click Command Prompt, and choose Run as administrator.
- Type the first command and press Enter. Wait for it to finish completely:
sfc /scannow
This scans all protected Windows system files and repairs any it finds corrupted. You’ll see a progress bar. When done, it will tell you if it found and fixed anything.
- Now run this second command and press Enter:
DISM /Online /Cleanup-Image /RestoreHealth
DISM goes deeper — it reaches out to Windows Update servers to download and replace any broken components that SFC couldn’t fix on its own. This can take 5–20 minutes depending on your internet speed. Let it run without interrupting it.
- Once both commands are done, restart your PC.
- Head back to Settings → Windows Update and try installing the update again.
✅ Pro tip: Run DISM first, then SFC — some tech experts recommend this order because DISM fixes the image that SFC then uses to repair files. Either order works, but DISM → SFC can be slightly more thorough.
Fix 3: Clear the Software Distribution Folder
Windows stores downloaded update files in a folder called SoftwareDistribution. If any of those files got corrupted during a previous download, they’ll keep causing your update to fail. Clearing this folder forces Windows to re-download everything from scratch.
Don’t worry — this is safe and you won’t lose any personal files.
Run these commands in Command Prompt (Administrator), one by one:
:: Step 1 – Stop the Windows Update service net stop wuauserv :: Step 2 – Stop the Background Intelligent Transfer Service net stop bits :: Step 3 – Delete the update cache rd /s /q C:\Windows\SoftwareDistribution :: Step 4 – Restart both services net start wuauserv net start bits
After running all four commands, restart your PC and check for updates again.
⚠️ Heads up: If clearing SoftwareDistribution didn’t help (reported by some KB5079473 users in March 2026), skip to Fix 4 — manually downloading the update is the more reliable next step in that case.
Fix 4: Install the Update Manually from Microsoft Update Catalog
Sometimes the Windows Update pipeline itself is the problem — and going around it completely is the simplest solution. Microsoft’s Update Catalog lets you download the exact update file and install it yourself.
- Open your browser and go to: catalog.update.microsoft.com
- In the search box, type the KB number of the failing update (e.g., KB5079473 or KB5074109).
- Find the version matching your PC — x64 for standard 64-bit Windows, or Arm64 for Surface Pro X and similar devices.
- Click Download and then click the .msu file link.
- Once downloaded, double-click the .msu file and follow the install prompts.
- Restart when asked.
✅ Why this works: The direct installer skips the Windows Update service entirely, so any corruption in that pipeline doesn’t affect it. For many users with KB5079473, this was the method that finally worked after everything else failed.
Fix 5: Use the Repair Reinstall Feature (No Data Loss)
If you’ve tried everything above and the update still won’t install, Windows 11 has a built-in repair reinstall feature that resets Windows system files without touching your personal files, installed apps, or settings.
- Go to Settings → System → Recovery.
- Look for “Fix problems using Windows Update”.
- Click the Reinstall Now button next to it.
- Check the box for “Automatically restart my PC 15 minutes after installation” and click OK.
- Windows will download the repair version and install it. This can take 30–60 minutes.
- After restart, check Windows Update for the previously failing update.
💡 Recommended by Microsoft. This is officially the method Microsoft support agents suggest when SFC and DISM don’t resolve a persistent update install failure. It’s particularly effective when the issue is deep in system components.
Fix 6: Last Resort — Clean Install Using Windows 11 Installation Media
If every single fix above has failed — and only then — it’s time to consider a clean installation of Windows 11. This is rare, but some users with severely corrupted component stores have needed this step.
🔴 Back up your data first. A clean install will erase everything on your Windows drive. Back up all important files to an external drive or cloud storage before proceeding.
- Download the Windows 11 Installation Assistant or Media Creation Tool from: microsoft.com/software-download/windows11
- Run the tool and follow the instructions to create a bootable USB or upgrade in place.
- If doing a clean install, boot from the USB and choose “Custom: Install Windows only”.
- After setup completes, run Windows Update until all updates install successfully.
✅ Quick-Reference Fix Order
| 1 | Run the Windows Update Troubleshooter (Settings → System → Troubleshoot) |
| 2 | Run sfc /scannow + DISM /RestoreHealth in Admin CMD → Restart |
| 3 | Clear the SoftwareDistribution folder via CMD → Restart |
| 4 | Download and install the update manually from catalog.update.microsoft.com |
| 5 | Use Settings → Recovery → Fix Problems Using Windows Update → Reinstall Now |
| 6 | Last resort: Clean install using Windows 11 Installation Media |
Frequently Asked Questions
Still Stuck? Here’s How to Get More Help
If none of the above fixes resolved your error, don’t give up — there are other places to turn.
| 📖 iFixiToday Blog Browse more Windows 11 error fixes, guides, and tutorials. ifixitoday.com/blog | 💬 Microsoft Q&A Post your specific issue with your Windows build number for expert help. learn.microsoft.com/answers |
| 🛠️ Microsoft Support Chat Chat live with a Microsoft support agent for free on consumer Windows issues. support.microsoft.com | 🔗 Update Catalog Download any Windows update manually to bypass automatic update failures. catalog.update.microsoft.com |
Wrapping Up
Error 0x80070306 sounds scary, but it’s almost always fixable without losing your files or reinstalling Windows from scratch. The vast majority of users who encounter this error are able to resolve it with Fix 2 (SFC + DISM) or Fix 4 (manual catalog install) — so start there and work your way down the list only if needed.
The key is patience and following the steps in order. Don’t jump straight to a reinstall when a five-minute command-line fix might be all you need.
If this guide helped you, feel free to bookmark iFixiToday.com — we regularly publish step-by-step guides for the most common Windows, Outlook, Word, and OneDrive issues so you always have a trusted place to turn when tech goes sideways.
📌 Disclaimer: iFixiToday.com is an independent third-party resource and is not affiliated with Microsoft Corporation. All trademarks belong to their respective owners. The information in this article is provided for general guidance purposes. Always back up your data before making system-level changes.



