Windows Update issue (failed to install) , 0x80070643

Ary Ahmed 165 Reputation points
2024-01-15T07:22:09.2933333+00:00

Dear All, kindly asking for help regarding Windows updates on our Windows 10 and Windows 11 computers , we have some computers not able to install monthly updates and stay on the retry state Error code is : 0x80070643 I have tried to fix Windows with sfc/ scannow , chkdsk c: /f cleaned the Windows update repositories reset the services the issue is still happening and Windows updates not get installed on some computers any idea? Thanks

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,594 questions
{count} votes

Accepted answer
  1. John Krikawa 175 Reputation points
    2024-01-24T20:59:45.2733333+00:00

    Same issue on an extremely clean and new Windows 10 Pro installation. Flow_p's link to the already reported problem was useful. The inner solution was changing the recovery partition size. I followed this guide exactly and rebooted, and the update installed:
    https://support.microsoft.com/en-us/topic/kb5028997-instructions-to-manually-resize-your-partition-to-install-the-winre-update-400faa27-9343-461c-ada9-24c8229763bf

    20 people found this answer helpful.

17 additional answers

Sort by: Most helpful
  1. Michael Blackkatt 0 Reputation points
    2024-04-17T06:02:00.1266667+00:00
    @ECHO OFF
    
    REM Stop Windows Update Services
    net stop wuauserv
    net stop cryptSvc
    net stop bits
    net stop msiserver
    
    REM Rename SoftwareDistribution Folder (This line requires admin privilege)
    ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    
    REM Start Windows Update Services
    net start wuauserv
    net start cryptSvc
    net start bits
    net start msiserver
    
    REM Run System File Checker (Wait for completion)
    sfc /scannow
    
    REM Run DISM Repair
    DISM /Online /Cleanup-Image /RestoreHealth
    
    ECHO All commands completed!
    
    PAUSE
    

    Here is a script of @S.Sengupta answer.

    0 comments No comments

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.