Quick Answer
Windows Update error 0x800705b4 is commonly fixed by restarting Windows Update services, clearing the SoftwareDistribution update cache, running DISM and SFC, and then checking for updates again. If the update still fails, install the update manually from the Microsoft Update Catalog.
Start with the quick reset below. It is safe, does not delete personal files, and fixes many cases where Windows Update is stuck, times out, or repeatedly shows 0x800705b4.
- Right-click Start and open Terminal (Admin) or Command Prompt (Admin).
- Run these commands one by one:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
ren %systemroot%\System32\catroot2 catroot2.old
net start msiserver
net start cryptsvc
net start bits
net start wuauserv- Restart your PC.
- Go to Settings > Windows Update and click Check for updates.
If the error returns, continue with the repair steps below.
Problem
Windows Update error 0x800705b4 usually appears while checking for updates, downloading cumulative updates, installing feature updates, or updating Microsoft Defender definitions. In many cases, Windows keeps retrying and then fails with a message similar to:
“There were some problems installing updates, but we’ll try again later. Error 0x800705b4.”
The code often points to a timeout. In plain terms, Windows Update waited for a component, service, driver, or response that did not complete in time.
Cause
The most common cause is a stuck or damaged Windows Update cache. Other common triggers include disabled update services, corrupted system files, third-party antivirus interference, driver conflicts, incorrect time settings, or a broken update component.
| Possible cause | What it affects |
|---|---|
| Corrupted SoftwareDistribution folder | Update downloads and installation staging |
| Stopped BITS or Windows Update service | Downloading and applying updates |
| System file corruption | Servicing stack and update installation |
| Security software conflict | Update connection or file access |
| Outdated drivers | Feature updates and cumulative updates |
Prerequisites
- Use an administrator account.
- Keep your device connected to stable internet.
- Plug in your laptop before running updates.
- Temporarily pause VPN or proxy connections if you use them.
- Back up important work before restarting services or installing major updates.
Step-by-step Solution
1. Run the Windows Update troubleshooter
Windows includes a built-in troubleshooter that can reset basic update settings and detect blocked services.
- Open Settings.
- Go to System > Troubleshoot > Other troubleshooters.
- Find Windows Update.
- Click Run.
- Apply any recommended fixes and restart the PC.
On Windows 10, go to Settings > Update & Security > Troubleshoot > Additional troubleshooters.
2. Restart Windows Update services and clear the update cache
This is the most effective fix for Windows Update error 0x800705b4 when the update process is stuck or timing out.
- Open Command Prompt as Administrator.
- Run the following commands:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
ren %systemroot%\System32\catroot2 catroot2.old
net start msiserver
net start cryptsvc
net start bits
net start wuauservWindows will create fresh SoftwareDistribution and catroot2 folders automatically. After that, restart your computer and check for updates again.
3. Repair Windows system files with DISM and SFC
If update components are damaged, use DISM first, then SFC. Run these commands in an elevated Command Prompt or Terminal:
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannowWait for each command to finish. DISM can take several minutes and may appear stuck at certain percentages. Do not close the window early.
4. Temporarily disable third-party antivirus or VPN
Some security tools inspect update traffic or lock update files during installation. Temporarily disable third-party antivirus, firewall suites, VPN apps, or proxy tools, then try Windows Update again.
Important: Do not leave your device unprotected. Re-enable your security software after testing. Microsoft Defender will usually remain active if no other antivirus is running.
5. Check date, time, and region settings
Incorrect time settings can break secure connections to Microsoft update servers.
- Open Settings > Time & language > Date & time.
- Turn on Set time automatically.
- Turn on Set time zone automatically, if available.
- Click Sync now.
6. Install the failing update manually
If one specific update keeps failing with 0x800705b4, install it manually.
- Go to Settings > Windows Update > Update history.
- Note the failing KB number, such as KB503xxxx.
- Open the Microsoft Update Catalog website.
- Search for the KB number.
- Download the correct package for your Windows version and system type.
- Run the installer and restart the PC.
Examples
To check whether the Windows Update service is running, use:
sc query wuauservTo restart only the Windows Update service, use:
net stop wuauserv
net start wuauservTo confirm your Windows version before downloading a manual update, run:
winverCommon Causes
- Windows Update download cache is incomplete or corrupted.
- Background Intelligent Transfer Service is not running.
- Windows Update service is stuck in a pending state.
- DISM component store corruption blocks update installation.
- A third-party antivirus or VPN interrupts update traffic.
- The PC has pending restarts from older updates.
- There is not enough free disk space for update staging.
Common Mistakes
- Deleting random files from C:\Windows: Only reset known update folders such as SoftwareDistribution and catroot2.
- Closing DISM too early: It can pause for a while. Let it finish.
- Ignoring pending restarts: Restart before retrying updates.
- Installing the wrong manual update: Match the KB, Windows version, and CPU architecture.
- Using multiple repair tools at once: Run one fix, restart, and test before moving on.
Best Practices
- Keep at least 10 GB of free space before installing cumulative or feature updates.
- Restart Windows weekly if the machine is always on.
- Avoid interrupting updates during installation or restart.
- Keep device drivers updated from Windows Update or the PC manufacturer.
- Create a restore point before making large system changes.
Verification
After applying the fixes, verify that Windows Update is working properly:
- Open Settings > Windows Update.
- Click Check for updates.
- Install available updates.
- Restart if prompted.
- Open Update history and confirm the failed KB now shows as installed.
You can also confirm system file health by running:
sfc /scannowIf Windows Update still shows error 0x800705b4 after all steps, perform an in-place repair upgrade using the official Windows ISO or Installation Assistant. This keeps personal files and apps while replacing damaged Windows system components.