How to Fix Windows Update Error 0x8024000B

Learn how to resolve the frustrating Windows Update Error 0x8024000B and get your system back on track with these effective troubleshooting methods.

How to Fix Windows Update Error 0x8024000B

The Windows Update Error 0x8024000B occurs when your system can’t access the update manifest files needed to install updates. This error can prevent you from keeping your Windows operating system up-to-date, potentially leaving your computer vulnerable to security risks. Let’s explore some effective methods to resolve this issue and get your Windows updates working smoothly again.

Method 1: Run the Windows Update Troubleshooter

The built-in Windows Update Troubleshooter is often the quickest way to resolve update-related issues. It can automatically detect and fix common problems that might be causing the 0x8024000B error.

Step 1: Press the Windows key + I to open Settings.

Step 2: Navigate to System > Troubleshoot > Other troubleshooters.

Step 3: Find “Windows Update” in the list and click “Run” next to it.

Step 4: Follow the on-screen instructions and allow the troubleshooter to detect and fix any issues it finds.

Step 5: Once the process is complete, restart your computer and try running Windows Update again.


Method 2: Rename the Software Distribution Folder

Sometimes, corrupted files in the Software Distribution folder can cause update errors. Renaming this folder forces Windows to create a new one, which can often resolve the issue.

Step 1: Press Windows key + X and select “Command Prompt (Admin)” or “Windows PowerShell (Admin)”.

Step 2: Type the following commands, pressing Enter after each one:

net stop wuauserv
net stop bits
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
net start wuauserv
net start bits

Step 3: Close the Command Prompt or PowerShell window and try running Windows Update again.


Method 3: Run the DISM and SFC Tools

The Deployment Image Servicing and Management (DISM) tool and System File Checker (SFC) can help repair corrupted system files that might be causing the update error.

Step 1: Open Command Prompt as an administrator (as described in Method 2).

Step 2: Run the following command and wait for it to complete (this may take several minutes):

DISM /Online /Cleanup-Image /RestoreHealth

Step 3: Once DISM completes, run the SFC tool with this command:

sfc /scannow

Step 4: Restart your computer after both commands have finished and try Windows Update again.


Method 4: Clear the Windows Update Cache

Clearing the Windows Update cache can help resolve issues caused by corrupted update files.

Step 1: Open Command Prompt as an administrator.

Step 2: Stop the Windows Update services by typing:

net stop wuauserv
net stop bits
net stop cryptsvc

Step 3: Delete the contents of the Software Distribution and Catroot2 folders:

del /q /s /f "%SystemRoot%\SoftwareDistribution\*"
del /q /s /f "%SystemRoot%\System32\catroot2\*"

Step 4: Restart the Windows Update services:

net start wuauserv
net start bits
net start cryptsvc

Step 5: Close Command Prompt, restart your computer, and try Windows Update again.


Method 5: Manually Download and Install Updates

If all else fails, you can try manually downloading and installing the updates from the Microsoft Update Catalog.

Step 1: Visit the Microsoft Update Catalog website.

Step 2: Search for the update you’re trying to install using the KB number (e.g., KB5000850).

Step 3: Download the appropriate version for your system architecture (32-bit or 64-bit).

Step 4: Once downloaded, double-click the .msu file to install the update manually.

Remember to restart your computer after applying any of these methods. If you continue to experience issues, it might be worth considering a Windows repair install or reaching out to Microsoft Support for further assistance.


By following these methods, you should be able to resolve the Windows Update Error 0x8024000B and get your system up-to-date. Regular updates are crucial for maintaining your computer’s security and performance, so it’s important to address these issues promptly.