Published 2026-02-04 by TechNet New England
Windows Update is essential for security and stability, but it's also one of the most common sources of problems. Updates can fail to install with cryptic error codes, cause blue screens after installation, break features you rely on, or get stuck in an endless "Preparing to install" loop. Here's how to handle the most common Windows Update issues.
The Best Update Strategy: Delay After Patch Tuesday
Before we get into fixing problems, here's how to avoid them in the first place. Microsoft releases updates on the second Tuesday of every month (known as "Patch Tuesday"). These updates occasionally have bugs that get fixed in the following days. A practical approach is to delay updates by one to two weeks so other people find the problems first.
- Open Settings > Windows Update
- Click "Pause updates" and select 1-2 weeks
- After the pause period, let updates install normally
This gives you the security updates you need while avoiding the worst day-one bugs.
Fix 1: Run the Windows Update Troubleshooter
Start with the built-in troubleshooter. It's not magic, but it catches common issues like a stopped update service or corrupted download cache.
- Open Settings > System > Troubleshoot > Other troubleshooters
- Find "Windows Update" and click "Run"
- Follow the prompts and let it attempt repairs
- Restart your computer and try updating again
Fix 2: Clear the Windows Update Cache
Sometimes update files get partially downloaded or corrupted. Clearing the cache forces Windows to download fresh copies.
- Open Command Prompt as Administrator
- Stop the update services by running these commands one at a time:
net stop wuauserv
net stop bits
net stop cryptSvc
- Rename the download cache folder:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
- Restart the services:
net start wuauserv
net start bits
net start cryptSvc
- Try running Windows Update again
After confirming updates work, you can delete the SoftwareDistribution.old folder to free up space.
Fix 3: Run SFC and DISM
Corrupted system files are a common reason for update failures. Open Command Prompt as Administrator and run:
sfc /scannow
Wait for it to complete, then run:
DISM /Online /Cleanup-Image /RestoreHealth
DISM connects to Windows Update to download clean copies of corrupted files, so make sure you're connected to the internet. Restart and try updating again.
Fix 4: Manually Install a Stuck Update
If a specific update keeps failing, you can download and install it manually from Microsoft's Update Catalog.
- Note the KB number of the failing update (e.g., KB5034441) from Settings > Windows Update > Update history
- Go to
catalog.update.microsoft.comin your browser - Search for the KB number
- Download the version that matches your system (x64 for most modern PCs)
- Run the downloaded file and follow the installation prompts
This bypasses the normal Windows Update mechanism and often succeeds when automatic installation fails.
Fix 5: Roll Back a Bad Update
If an update installed successfully but caused problems (blue screens, broken features, performance issues), you can uninstall it.
- Open Settings > Windows Update > Update history
- Scroll down and click "Uninstall updates"
- Find the problematic update (sort by date to find the most recent one)
- Click "Uninstall" next to it
- Restart your computer
If Windows won't boot at all after an update, you can access recovery options:
- Force-restart your PC three times in a row during boot (hold the power button when you see the Windows logo). This triggers Automatic Repair
- Go to Advanced options > Troubleshoot > Advanced options > Uninstall updates
- Choose "Uninstall latest quality update" or "Uninstall latest feature update"
Fix 6: Common Error Codes and What They Mean
0x80070002or0x80070003: Missing or corrupted update files. Clear the update cache (Fix 2)0x800f081f: DISM can't find repair files. Try running DISM with a Windows ISO as a source0x80073712: Component store corruption. Run both SFC and DISM (Fix 3)0x800705b4: Timeout error. Check your internet connection and try again0x80242006: The update was already installed or superseded. Check your update history0x8007000d: Invalid data. Usually fixed by clearing the update cache
If these steps don't resolve the issue, or if you'd like professional help, our team is here. Contact TechNet New England for IT support.