Fix Windows Update Error 0x800f0985: Troubleshooting Guide

  • Thread Author
If you've recently been greeted by the unsettling Windows Update error code 0x800f0985 while attempting to update your operating system, you're not alone. This error can disrupt your update process on Windows 10 and Windows 11, frustrating many users. Fortunately, we have some effective troubleshooting strategies at hand. Let's dive into the different solutions you can apply to restore functionalities and get back to smooth sailing.

What Does Error Code 0x800f0985 Mean?​

This error typically indicates that Windows has encountered a failure during the update process. More specifically, it suggests that Windows has failed to install a particular update, often due to underlying issues like missing components or corrupted files.

Common Symptoms​

  • The update installation process hangs or is interrupted.
  • An error notification pops up, stating Windows failed to install the following update with error code 0x800F0985.

Step-by-Step Solutions to Fix Error 0x800f0985​

1. Run the Windows Update Troubleshooter
  • Access the Tool: Open the Get Help app from the taskbar by typing "get help".
  • Search for Troubleshooter: In the app, search for "Windows Update troubleshooter" and follow the prompts until the tool identifies the issue and recommends fixes.
  • Follow Instructions: Complete the troubleshooting recommended by the tool. Restart your computer afterward to see if the issue persists.
2. Restart Windows Update Related Services
Sometimes, simply restarting the related services can resolve the update errors. To do this:
  • Open Command Prompt as an administrator.
  • Execute the following commands one after another:
    Code:
    bash net start bits net start wuauserv net start appidsvc net start cryptsvc
  • After entering each command, press Enter. Check if this resolves the error.
3. Reset Windows Update Components
If the above steps don't work, the next course of action is to reset the Windows Update components. This gets a bit technical, but it can be very effective:
  • Stop the Windows Update service by executing this command:
    Code:
    bash net stop wuauserv
  • Next, you'll need to delete specific data:
    • Delete the SoftwareDistribution and catroot2 folders, which store Windows Update files.
      • Navigate to the following paths and delete the corresponding folders:
        • C:\Windows\SoftwareDistribution
        • C:\Windows\System32\catroot2
  • Once you've deleted these folders, restart the Windows Update service:
    Code:
    bash net start wuauserv
  • This process effectively clears any problematic cached files that could be causing the update failure.
4. Download the Update Manually
If automatic updates fail, consider downloading the necessary update directly:
  • Visit the Microsoft Update Catalog.
  • Use the search bar to find the specific update you are trying to install (like cumulative updates).
  • Download the appropriate version for your architecture (32-bit or 64-bit) and install it manually.

Additional Considerations​

  • Antivirus Interference: Sometimes, antivirus software can block critical updates. If you suspect this may be the case, try temporarily disabling your antivirus software before running the updates.
  • Corrupted Update Packages: If a specific update package is corrupted, it could prevent installations. In such instances, consider clearing your Windows Update history or performing a System File Check (SFC) using the command:
    Code:
    bash sfc /scannow

Conclusion​

Getting past the dreaded Windows Update error 0x800f0985 may take a few tries, but with the methods above, you can troubleshoot like a pro. Just remember to backup your important data to avoid any mishaps while performing these processes. If none of the solutions work, consider seeking additional help from Microsoft support or your local tech support services. Happy updating!
Source: The Windows Club Fix 0x800f0985 Windows Update Error