Microsoft regularly releases Windows updates to protect your computer from security threats, fix bugs, improve stability, and introduce new features. Most updates install automatically without any issues, helping keep your PC secure and running smoothly.
Unfortunately, Windows Update doesn’t always work as expected. You might see an error code such as 0x80070643, 0x80070422, or 0x800f081e, or receive a generic message like “Something didn’t go as planned,” “Install error,” or “Updates failed to install.” In some cases, the update gets stuck at a certain percentage, repeatedly fails to download, or rolls back after restarting. These problems can prevent your PC from receiving important security updates and leave you wondering what went wrong.
Several factors prevent Windows Update downloads and installations, such as a corrupted update cache, damaged system files, disabled Windows Update services, insufficient storage, or temporary software conflicts. In this guide, you’ll learn how to troubleshoot Windows Update errors in Windows 11 using proven solutions that actually work.
Why Do Windows Update Errors Occur?
Windows Update relies on several services, system files, and background processes to download and install updates successfully. If any part of this process fails, Windows may display an error code or stop the update from installing.

Some of the most common causes of Windows Update errors include:
- Corrupted Windows Update cache: Damaged or incomplete update files can prevent new updates from downloading or installing correctly.
- Corrupted system files: Missing or damaged Windows system files may interfere with the update process.
- Windows Update service issues: If required services are disabled or not running properly, Windows Update cannot download or install updates.
- Insufficient disk space: Major cumulative or feature updates require enough free storage to complete the installation.
- Driver or software conflicts: Outdated device drivers, antivirus programs, or third-party applications can sometimes block Windows Update.
- Network or internet problems: An unstable internet connection may interrupt the update download.
- Microsoft server issues: Occasionally, Windows Update problems are caused by temporary issues on Microsoft’s servers, which usually resolve on their own.
However, most Windows Update errors can be fixed using a few built-in troubleshooting tools and simple maintenance steps. Start with the basic solutions below and work through them one by one. In many cases, one of the first few methods is enough to get Windows Update working again.
1. Perform These Basic Checks First
Before trying advanced troubleshooting methods, it’s worth checking a few common issues that can prevent Windows Update from installing successfully. These simple checks take only a few minutes and often resolve update errors without additional steps.
Restart Your Computer
If you haven’t already, restart your PC and try installing the update again. A restart clears temporary files, restarts Windows services, and completes any pending system changes that may be preventing Windows Update from working properly.
Check Your Internet Connection
A slow or unstable internet connection can interrupt Windows Update downloads, resulting in installation failures or error messages.
- Make sure you’re connected to the internet.
- If possible, switch to a more stable Wi-Fi network or use a wired Ethernet connection.
- Avoid downloading large files while Windows Update is running.
Make Sure You Have Enough Free Storage
Windows needs sufficient free disk space to download, extract, and install updates. If your system drive is almost full, updates may fail to install.
To check your available storage:
- Press Windows + I to open Settings.
- Select System > Storage.
- Check the available free space on your system drive (usually C:).
If you’re running low on space, delete unnecessary files, empty the Recycle Bin, or use Storage Sense to free up disk space before trying the update again.

Tip: Microsoft recommends keeping at least 20 GB of free space available for major Windows feature updates. Smaller cumulative updates usually require less storage but still benefit from having adequate free space.
2. Run the Windows Update Troubleshooter
Windows 11 includes a built-in Windows Update Troubleshooter that can automatically detect and fix common update problems. It checks Windows Update services, clears temporary update settings, and repairs common configuration issues that may be preventing updates from installing.
While it won’t fix every Windows Update error, it’s a quick troubleshooting step that’s worth trying before moving on to more advanced solutions.
Here’s how to run the Windows Update Troubleshooter:
- Press Windows + I to open Settings.
- Go to System > Troubleshoot.
- Click Other troubleshooters.
- Find Windows Update and click Run.
- Wait while Windows scans for problems.

- If the troubleshooter finds any issues, follow the on-screen instructions to apply the recommended fixes.
- Restart your computer if prompted.
- Open Settings > Windows Update and click Check for updates to see if the problem has been resolved.
If the Troubleshooter Doesn’t Fix the Problem
The Windows Update Troubleshooter is designed to resolve common issues automatically, but it may not fix problems caused by corrupted update files, damaged system files, or Windows Update service failures.
If you’re still seeing an update error, continue with the next method below.
3. Clear the Windows Update Cache
If Windows Update repeatedly fails to download or install updates, the update cache may be corrupted. Clearing the Windows Update cache forces Windows to discard the existing update files and download fresh copies from Microsoft’s servers.
Don’t worry—this process won’t delete your personal files or remove installed Windows updates.
Step 1: Stop the Windows Update Service
Before deleting the cached update files, you need to stop the Windows Update service.
- Press Windows + R, type services.msc, and press Enter.
- Scroll down and locate Windows Update.
- Right-click Windows Update and select Stop.

Step 2: Delete the Update Cache
- Open File Explorer.
- Browse to the following folder:
C:\Windows\SoftwareDistribution\Download- Select all files and folders inside the Download folder.
- Press Delete.
- If prompted for administrator permission, click Continue.

Important: Delete only the contents of the Download folder. Do not delete the SoftwareDistribution folder itself.
Step 3: Restart the Windows Update Service
- Return to the Services window.
- Right-click Windows Update.
- Select Start.
Step 4: Check for Updates Again
- Open Settings.
- Select Windows Update.
- Click Check for updates.
Windows will download a fresh copy of the update files. If the issue was caused by corrupted or incomplete downloads, the update should now install successfully.
Tip: This method is particularly effective for update errors that occur during the download phase or when Windows Update gets stuck at a certain percentage.
4. Repair Corrupted System Files Using SFC and DISM
Corrupted or missing Windows system files can prevent Windows Update from installing correctly. Fortunately, Windows includes two built-in tools, System File Checker (SFC) and Deployment Image Servicing and Management (DISM), that can scan for and repair these problems.
It’s recommended to run DISM first, followed by SFC, to ensure Windows has a healthy system image before checking individual system files.
Step 1: Run the DISM Command
- Click Start, type cmd.
- Right-click Command Prompt and select Run as administrator.
- Run the following command:
DISM /Online /Cleanup-Image /RestoreHealth
- Wait for the scan to complete. This process may take several minutes.

Step 2: Run the SFC Scan
After DISM finishes successfully, run the following command:
sfc /scannow
Wait until the scan reaches 100%. If Windows finds corrupted system files, it will automatically attempt to repair them.

Restart Your PC
Once both scans are complete, restart your computer and try installing the Windows update again.
If the Problem Persists
If SFC or DISM reports errors that couldn’t be repaired, or Windows Update still fails, continue to the next troubleshooting method.
5. Reset Windows Update Components
If Windows Update is still failing after trying the previous methods, resetting the Windows Update components can often resolve the problem. This process stops the Windows Update services, clears the update cache, and rebuilds the components Windows uses to download and install updates.
Unlike simply deleting the update cache, this method completely refreshes Windows Update without affecting your personal files.
Step 1: Open Command Prompt as Administrator
- Click Start and type cmd.
- Right-click Command Prompt and select Run as administrator.
- Click Yes if prompted by User Account Control (UAC).
Step 2: Stop the Windows Update Services
Run the following commands one at a time:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
Step 3: Rename the Windows Update Folders
Next, run these commands to rename the update cache folders:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old
Windows will automatically create new copies of these folders the next time it checks for updates.
Step 4: Restart the Windows Update Services
Run the following commands:
net start wuauserv
net start bits
net start cryptsvc
net start msiserver
Step 5: Restart Your Computer
Restart your PC, then open Settings > Windows Update and click Check for updates.
If corrupted Windows Update components were causing the problem, Windows should now be able to download and install updates normally.
Tip: This is one of the most effective solutions for persistent Windows Update errors that continue to appear even after clearing the update cache or running the Windows Update Troubleshooter.
6. Install the Update Manually from the Microsoft Update Catalog
If Windows Update continues to fail, you can manually download and install the update from the Microsoft Update Catalog. This bypasses the Windows Update download process and is often successful when automatic updates repeatedly fail.
Before you begin, note the KB number of the update that’s failing to install. For example, a cumulative update might be listed as KB50xxxxx in Windows Update.
Step 1: Find the KB Number
- Open Settings.
- Go to Windows Update.
- Look for the update that failed to install and note its KB number.

Step 2: Download the Update
- Open your web browser and visit the Microsoft Update Catalog.
- Enter the KB number into the search box.
- Press Search.
- Download the update that matches your Windows version and system architecture (x64, ARM64, or x86).

Step 3: Install the Update
- Locate the downloaded .msu file.
- Double-click the file to start the installation.
- Follow the on-screen instructions.
- Restart your computer if prompted.
If the Manual Installation Fails
If the update still refuses to install, the problem is likely related to your Windows installation rather than Windows Update itself. At this point, try the following:
- Verify that your Windows edition and architecture match the downloaded update.
- Run the DISM and SFC commands again to repair system files.
- Reset the Windows Update components if you haven’t already.
- If the issue started after a recent update, uninstall the problematic update and try installing the latest cumulative update instead.
Tip: Microsoft frequently releases new cumulative updates that replace older ones. If a particular update continues to fail, check whether a newer cumulative update is available, as installing the latest update often resolves previous installation issues.
7. Common Windows Update Error Codes Explained
Windows Update error codes can help identify why an update failed to install. While the codes may look confusing, many of them point to common problems such as corrupted update files, disabled services, insufficient storage, or incompatible updates.
The table below explains some of the most common Windows Update error codes and the troubleshooting methods you should try first.
| Windows Update Error Code | What It Usually Means | Recommended Fix |
|---|---|---|
| 0x80070643 | Update installation failed, often due to corrupted system files or update components. | Run DISM and SFC, then clear the Windows Update cache and try installing the update again. |
| 0x80070422 | The Windows Update service is disabled or not running. | Enable the Windows Update service and restart your computer before checking for updates again. |
| 0x80070020 | Another application or background process is interfering with the installation. | Restart your PC, temporarily disable third-party antivirus software, and try the update again. |
| 0x800f081e | The update isn’t compatible with your current version or edition of Windows. | Verify you’re installing the correct update or download it manually from the Microsoft Update Catalog. |
| 0x80d02002 | Windows couldn’t download the update successfully, usually due to network or cache problems. | Check your internet connection and clear the Windows Update cache. |
Although these error codes indicate different issues, the troubleshooting methods covered in this guide resolve most Windows Update problems regardless of the specific code displayed.
Tip: If you continue seeing the same error code after trying all the recommended solutions, note the full error message and the KB number of the failed update before contacting Microsoft Support or your device manufacturer.
Frequently Asked Questions
Windows Update can fail for several reasons, including corrupted update files, damaged system files, insufficient storage, disabled Windows Update services, incompatible drivers, or temporary software conflicts. Working through the troubleshooting methods in this guide usually resolves the problem.
No. Resetting Windows Update components or clearing the update cache only refreshes the files and services used by Windows Update. Your personal files, installed programs, and settings won’t be removed.
Yes, you can temporarily pause Windows Update if a specific update is causing problems. However, it’s recommended to install security updates as soon as Microsoft releases a fix or a newer cumulative update.
This usually happens because of a slow internet connection, corrupted update files, insufficient disk space, or background processes interfering with the installation. Clearing the Windows Update cache and restarting your PC often resolves the issue.
If you’ve tried every solution in this guide and Windows Update is still failing, consider performing an in-place repair upgrade using the latest Windows 11 installation media. This reinstalls Windows while keeping your personal files, apps, and most settings intact. If the problem still persists, contacting Microsoft Support or your PC manufacturer’s support team may be the best option.
