Strange issue with the kb5120249 update on Windows 10

Lars-Erik Østerud 45 Reputation points
2026-08-31T10:51:39.0266667+00:00

Have a really strange issue with the kb5120249 update on Windows 10.

If installed from "Windows Update" it fails with 0x80070643.
If I manually download and run it it says the update is allready installed.
If it is allready installed why does "Windows Update" try to download it again?

The 0x80070643 has earlier been linked to the recovery partition.
But this very old Windows 10 PC har no separate recovery partition.
The recovery environment is on the C: drive (and works as it should).

Have of course tried both "sfc" and "dism" to repair but no change.

Windows for home | Windows 10 | Windows update
0 comments No comments

2 answers

Sort by: Most helpful
  1. Ramesh Srinivasan 86,840 Reputation points Independent Advisor
    2026-08-31T11:30:43.01+00:00

    Hi Lars-Erik Østerud,

    You're right. The 0x80070643 usually occurs when installing the WinRE Security Update or the Defender Security intelligence update. If this error occurs for the cumulative update or if KB5120249 is repeatedly offered for your system although it's installed already, please reset the Windows Update cache using this batch file to see if that fixes the issue:

    https://gist.github.com/winhelponline/af9296c106448a664a6229d8146a85fd

    1. Download the zip file from the above link and extract the batch file to the desktop.
    2. Right-click on the batch file, click Properties, click "Unblock" (if present), and OK.
    3. Double-click the batch file to run it.
    4. After it completes execution, don't close it yet.
    5. Right-click on that Command Prompt window, click "Edit" and click "Select all"
    6. Right-click on that Command Prompt window, click "Edit" and click "Copy" (This copies the output to the clipboard.)
    7. Paste the info (Ctrl + V) into your reply window.

    Standard Disclaimer: There is a link to a non-Microsoft website. The page appears to provide accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as PUPs (Potentially Unwanted Products). Thoroughly research any product advertised on the site before you decide to download and install it.


    Was this answer helpful?

    1 person found this answer helpful.

  2. Adam J. Marshall 11,031 Reputation points MVP
    2026-09-01T18:38:35.2833333+00:00

    Move and rebuild the Recovery partition to the end of the drive and increase the size of it.

    reagentc /disable
    diskpart
    list disk
    select disk <#>
    list partition
    select partition <#>   ← the recovery partition
    delete partition override
    list volume
    select volume <#>    ← the volume you want to expand/extend
    Extend
    shrink desired=1024
    create partition primary size=1024
    format quick fs=ntfs label="Recovery"
    set id=de94bba4-06d1-4d40-a16a-bfd50179d6ac
    gpt attributes=0x8000000000000001
    exit
    reagentc /enable
    

    Then try checking for updates and see if it is successful.

    Was this answer helpful?


Your answer

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