Windows Update is an essential component of the operating system, responsible for maintaining the security and performance of your PC. Errors in this system can lead to vulnerability to threats and a lack of critical updates. One of the more elusive update errors is 0x8024200b, which generally occurs when an update is downloaded but fails to complete the installation. If you’re seeing this error, it’s crucial to address it promptly to ensure your system remains up-to-date and secure.
This guide outlines several reliable methods to fix the Windows Update error 0x8024200b. These solutions apply to Windows 10 and Windows 11, and they’re designed to help both novice users and experienced technicians restore the proper functioning of Windows Update.
1. Run the Windows Update Troubleshooter
Microsoft provides a built-in troubleshooting tool specifically for update problems. Here’s how to use it:
- Click on Start and navigate to Settings > Update & Security > Troubleshoot.
- Select Additional troubleshooters and click on Windows Update.
- Click Run the troubleshooter and follow the on-screen instructions.
This tool will detect and attempt to fix common issues related to Windows Update. It is the first step to take before diving into more complex solutions.

2. Delete Pending.xml File
The 0x8024200b error can sometimes be triggered by a corrupted Pending.xml file, which Windows uses to manage ongoing update tasks. Deleting this file can allow pending updates to reset.
- Open Command Prompt as Administrator.
- Type
cd %windir%\winsxs
and press Enter. - Type
del pending.xml
and press Enter if the file exists.
Note: If the file doesn’t exist, you’ll see an error message, which you can ignore.
3. Manually Reset Windows Update Components
Sometimes, Windows Update-related services need to be manually reset to get past stubborn errors. This can be done using Command Prompt:
- Type
cmd
in the start menu, right-click on Command Prompt, and choose Run as administrator. - Stop update-related services with these commands:
- Rename the SoftwareDistribution and Catroot2 folders:
- Restart the services:
net stop wuauserv net stop bits net stop cryptsvc net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old ren C:\Windows\System32\catroot2 Catroot2.old
net start wuauserv net start bits net start cryptsvc net start msiserver
After you’ve completed these steps, try checking for updates again through Windows Settings.
4. Check Windows Update Log for More Details
Examining the update log can provide further insight into what’s causing the 0x8024200b error. Run the following command to generate a readable log file:
Get-WindowsUpdateLog
This will produce a log file on your desktop. Open it in a text editor and search for the error code. Often, you’ll find more context or even the name of the update package that is failing to install.

5. Download the Update Manually
If a specific update is consistently failing, downloading and installing it manually can bypass the issue entirely:
- Visit the Microsoft Update Catalog.
- Search for the KB number associated with the failed update (found in your update history).
- Download the version corresponding to your Windows architecture (x64 or ARM).
- Run the installer and restart your computer.
6. Perform a System File Check
Corrupted system files can also cause update errors. Run the System File Checker tool to verify and repair these files:
sfc /scannow
If it finds and repairs issues, try updating Windows again once the process completes.
7. Consider a Repair Install
If all else fails, a Windows Repair Install (also known as an in-place upgrade) may be necessary. This process reinstalls Windows without deleting your files or settings. It’s a more advanced step, but can clear up deep-seated issues affecting the update process.
Download the Windows 10 or 11 ISO file from Microsoft’s website, run the setup, and choose the Keep personal files and apps option when prompted.
Final Thoughts
The Windows Update error 0x8024200b may seem daunting, but with methodical troubleshooting, it can be resolved effectively. Always start with basic solutions, such as the troubleshooter or resetting services, before exploring more technical remedies. Keeping your system updated is vital for stability and security, so taking the time to resolve update issues is always worth the effort.