Window Updates WS2019 with registry database corrupt

Anonymous
2024-04-19T03:48:32+00:00

During window updates encounter with error 0x800703f1 and using DISM fix error encounter with event ID 1009 the configuration registry database corrupt.

Kindly advice any alternative to complete for window updates.

Windows for business Windows Server Devices and deployment Install Windows updates, features, or roles

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question. To protect privacy, user profiles for migrated questions are anonymized.

0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-04-19T14:47:42+00:00

    Hello Weng Chuan Yong,

    1.To fix the error code 0x800703f1, you can try the following steps:

    1. Run the Windows Update troubleshooter: Go to Settings > Update & Security > Troubleshoot > Windows Update troubleshooter. Follow the on-screen instructions to complete the troubleshooter.
    2. Reset the Windows Update components: Open Command Prompt as an administrator and run the following commands one by one:
      net stop wuauserv 
      
      net stop cryptSvc 
      
      net stop bits 
      
      net stop msiserver 
      
      ren C:\Windows\SoftwareDistribution SoftwareDistribution.old 
      
      ren C:\Windows\System32\catroot2 catroot2.old 
      
      net start wuauserv 
      
      net start cryptSvc 
      
      net start bits 
      
      net start msiserver 
      
    3. Use the Deployment Image Servicing and Management (DISM) tool to repair the system files: Open Command Prompt as an administrator and run the following command:
      DISM /Online /Cleanup-Image /RestoreHealth 
      

    2.Regarding the event ID 1009 error message stating that the configuration registry database is corrupt, you can try the following steps:

    1. Run the System File Checker (SFC) tool: Open Command Prompt as an administrator and run the following command:
      sfc /scannow 
      
    2. Restore the system to a previous restore point where the issue was not present.

    Hope it helps.

    Best regards,

    Lei

    0 comments No comments