Issue with Windows 11 24H2 update deployment using DISM

Haritha Duraisamy 0 Reputation points
2025-09-10T10:41:13.6566667+00:00

Hi team,
My machine is running Windows 11 24H2, and I’ve encountered an issue while deploying the cumulative update. The update was failing with error code 0x8024001C (2146498504).

I referred to the article on 0x8024001Cand found that the issue was resolved after deploying the checkpoint cumulative update KB5043080. I also reviewed the Microsoft support article for the update [for example : August 12, 2025—KB5063878 (OS Build 26100.4946)], which mentions using the DISM method for installation.

I followed the DISM method described in the article: I downloaded both the checkpoint and the cumulative update, placed them in the same folder, and ran the DISM command. This worked, and the update installed successfully.

However, I’m now facing three issues:

  1. The update installed via DISM does not appear in the Windows Update history.
  2. The update installed via DISM does not provide an uninstall option in the Control Panel
  3. The registry entries for previous updates under the path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\ have been wiped, leaving only the checkpoint and the latest cumulative update entries.

Could you please advise on these issues?

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

2 answers

Sort by: Most helpful
  1. Haritha Duraisamy 0 Reputation points
    2025-09-11T13:49:02.9966667+00:00

    Hi Emmanuel Santana,

    To answer your questions:

    1. Yes, the deployment was performed on a running system (not offline).
    2. No, we did not use an offline image such as a mounted WIM.
    3. No cleanup commands were executed after applying the update.

    User's image

    Currently, we've successfully deployed the September update [KB5065426] using the DISM method. The deployment completed without any errors, but the same three issues still persist.

    And uninstall option is availble in control panel but uanble to uninstall it (screenshot attached below). [In previous thread, i mentioned as "The update installed via DISM does not provide an uninstall option in the Control Panel" instead of unable to uninstall the update]

    User's image

    For comparison, we tested the same DISM deployment method on a Windows 11 23H2 system. The update installed successfully, able to uninstalled the update without issue, and the registry retained information from the previous update. However, the update history was still not maintained.

    Let me know if further details are needed.

    Was this answer helpful?


  2. Emmanuel Santana 40,110 Reputation points Independent Advisor
    2025-09-10T12:50:32.07+00:00

    Hi Haritha. You're right, when using DISM to install cumulative updates, some things behave differently compared to a normal Windows Update installation.

    DISM applies the update directly to the system image, so the update may not appear in the Windows Update history, can't be uninstalled via Control Panel, and might affect how previous updates are listed in the registry.

    Just to understand your setup better, was this DISM deployment done on a running system, or did you service an offline image (like a mounted WIM)? And did you run any cleanup commands after applying the update?

    You can try the following quick checks:

    1. Open PowerShell and run:
         Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 10
      
      This confirms whether the system registered the update.
    2. In Command Prompt (Admin), run:
         dism /online /get-packages /format:table
      
      This gives you a direct list of installed packages and their states.

    These will help confirm that the update was applied correctly even if it doesn't appear in the usual places. Let me know what results you get, especially from the DISM package list, so I can guide you further.

    Was this answer helpful?

    0 comments No comments

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.