Error code: (0x80073712)

yoni 0 Reputation points
2025-03-12T14:48:29.5033333+00:00

Hi,

I have problem in the update on server 2019 Once I try to update gets an error: Some update files are missing or have problems. We'll try to download the update again later. Error code: (0x80073712) what we do?

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2025-03-13T02:17:43.6933333+00:00

    Hello,

    This error (0x80073712) typically indicates that some update files are either missing or corrupted. In Windows Server 2019 this can prevent updates from installing properly. Here are some steps you can take to try to resolve the issue:

    1. Run the System File Checker (SFC)

     • Open an elevated Command Prompt.

     • Run the command: sfc /scannow

      – This will scan for missing or corrupted system files and attempt to repair them.

     • After sfc completes, check the output for any errors fixed and restart the server.

    1. Use the Deployment Image Servicing and Management (DISM) tool

     • In the elevated Command Prompt, run:

      DISM /Online /Cleanup-Image /RestoreHealth

     • This command will check the Windows image for component store corruption and repair it. Note: This step can take some time depending on your system.

     • Once DISM finishes (and ideally reports that the corruption was repaired), restart the server and try updating again.

    1. Clear the Windows Update cache (if necessary)

     • Sometimes, clearing the update cache helps when update files are in conflict.

     • Stop the Windows Update service and Background Intelligent Transfer Service (BITS). In an elevated Command Prompt, run:

      net stop wuauserv

      net stop bits

     • Navigate to C:\Windows\SoftwareDistribution and rename it (for example, to SoftwareDistribution.old).

     • Restart the services by running:

      net start wuauserv

      net start bits

     • Try installing the update again.

    1. Check for pending updates or reattempt installation

     • After running SFC and DISM, run Windows Update again so that it can redownload any necessary files and finalize the installation.

     • If a particular update continues to fail, note the KB number and consider searching Microsoft’s update catalog to manually download and install the update.

    If after these steps you’re still facing issues, you might consider:

     – Checking for any recent changes or third-party software that could be interfering with Windows Update.

     ---

    If the Answer is helpful, please click "Accept Answer" and upvote it.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.