answered removed
Combined SSU+LCU package (KB5099540) — cumulative update not listed in installed updates, only the SSU (KB5120210) appears
On Windows Server 2019 (OS Build 20348), we installed the July 14, 2026 cumulative update KB5099540. As documented, this combined package implicitly applies the servicing stack update (SSU) KB5120210 as part of the installation.
After the installation completes, Windows' list of installed updates shows only the SSU (KB5120210) and does not show the cumulative update (KB5099540).
Can you confirm the following:
- Is this the expected behavior for combined SSU+LCU packages — i.e., the SSU is registered as its own listed/permanent update entry while the LCU (cumulative update) is not shown as a separate KB entry?
- What is the authoritative way to confirm that the cumulative update KB5099540 itself was successfully applied? Should we rely on the OS build number (20348.5386) via
winver/Get-ComputerInforather than the installed-updates list? - Is there a supported command (e.g.,
DISM /online /Get-PackagesorGet-HotFix) that will reliably report the LCU portion as installed?
Windows for business | Windows Server | Devices and deployment | Install Windows updates, features, or roles
2 answers
Sort by: Most helpful
-
Brian Huynh 3,650 Reputation points Microsoft External Staff Moderator2026-07-28T01:21:28.4633333+00:00 Hello Daniel, thank you for posting in the Microsoft Q&A community.
To answer your questions directly:
- While visually this can occasionally happen depending on the installation method (such as WSUS vs. Standalone Installer), ideally, the LCU should also appear in the installed updates list. If it does not, it is not the intended behavior, but rather a known quirk of the WMI
Win32_QuickFixEngineeringclass (which feeds the Control Panel list) or an indication of an LCU installation failure. - Relying on the OS Update Build Revision (UBR) is the absolute and most authoritative method to confirm if the LCU applied successfully. Because cumulative updates directly increment the core OS build revision, verifying this number is foolproof. You can safely rely on
winver,Get-ComputerInfo, or by querying the registry directly. If your UBR reflects your target build (such as.5386), the LCU is completely installed and active, regardless of what the GUI reports. - Since
Get-HotFixrelies on the same WMI class that populates the Control Panel, it might miss the LCU if there is a CBS display issue. The most robust command to check the true package state in the CBS store is using the DISM tool to query the packages directly, as officially documented by Microsoft.
I will follow up on this thread to ensure your issue is resolved. If this information helps clarify the behavior, please consider clicking "Accept Answer" so that other community members can benefit from it.
For official Microsoft documentation on verifying and managing packages with DISM, you can refer to: DISM Operating System Package (.cab or .msu) Servicing Command-Line Options | Microsoft Learn
- While visually this can occasionally happen depending on the installation method (such as WSUS vs. Standalone Installer), ideally, the LCU should also appear in the installed updates list. If it does not, it is not the intended behavior, but rather a known quirk of the WMI