How to Manually Install a Missing Windows 11 Cumulative Update
🔍 WiseChecker

How to Manually Install a Missing Windows 11 Cumulative Update

Quick fix: Visit catalog.update.microsoft.com, search for the KB number you need (e.g., KB5034123), download the .msu for your architecture and Windows 11 version, then double-click it to install via WUSA.

Windows Update is missing a cumulative update that you know exists — either because it failed to download in the normal way, was hidden by Microsoft for your hardware, or because you need to install on a clean Windows 11 build without going through hundreds of MB of accumulated updates first. Manual download from the Microsoft Update Catalog lets you grab and apply individual KBs.

Symptom: A known cumulative update isn’t appearing in Windows Update, or you need to install a specific KB directly.
Affects: Windows 11 (and Windows 10) when manual update installation is needed.
Fix time: ~15 minutes including download.

ADVERTISEMENT

What causes this

Windows Update offers updates based on a Microsoft-side rollout schedule that’s influenced by hardware compatibility, regional availability, and known-issue blocks. A KB may be released to the world but blocked from your specific PC due to a driver compatibility hold. Or the update simply hasn’t reached your machine in the rolling deployment yet. The Microsoft Update Catalog hosts every released update as a standalone download — bypasses the rollout schedule.

The downloaded .msu installs via WUSA (Windows Update Standalone Installer), which is a separate installer engine from the regular Windows Update service.

Method 1: Download from Microsoft Update Catalog and install

The standard manual install path.

  1. Identify the exact KB number you need (e.g., from a Microsoft release notes page or a known issues notice).
  2. Open Edge or Chrome and visit catalog.update.microsoft.com.
  3. Enter the KB number in the search box and press Enter.
  4. The results show all variants of that KB. Pick the row matching:
    • Your architecture (typically x64-based Systems; rarely ARM64 or x86)
    • Your Windows version (e.g., Windows 11 23H2, Windows 11 22H2)
  5. Confirm your version: open Settings → System → About and check OS Build and Version.
  6. Click Download. In the popup, click the .msu link to save it locally.
  7. Right-click the downloaded .msu → Open.
  8. WUSA prompts: “Do you want to install…” Click Yes.
  9. Install runs. When prompted to restart, do so.

After reboot, check Settings → Windows Update → Update history — the KB appears with status Successfully installed.

ADVERTISEMENT

Method 2: Install via Command Line (for scripts or unattended use)

Useful for IT deployment or unattended installs on multiple PCs.

  1. Open Terminal (Admin).
  2. Navigate to the folder containing the downloaded .msu:
    cd C:\Users\you\Downloads
  3. Install with WUSA:
    wusa.exe windows11.0-kb5034123-x64.msu /quiet /norestart

    The /quiet flag suppresses UI; /norestart prevents auto-reboot.

  4. Wait for the install. Verify success:
    Get-HotFix -Id KB5034123

    The output should include the KB with its install date.

  5. Reboot manually when convenient.

This is the right approach for scripted deployment — pair it with DISM and update history checks for full automation.

Method 3: Install via DISM (offline image servicing)

For applying an update to a Windows image that’s not currently running — e.g., a recovery partition, an offline VHD, or a customized installation image.

  1. Mount the offline Windows image (if it’s a .wim or .vhd file):
    DISM /Mount-Image /ImageFile:"C:\path\to\install.wim" /Index:1 /MountDir:"C:\Mount"
  2. Apply the update package to the mounted image:
    DISM /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Users\you\Downloads\windows11.0-kb5034123-x64.msu"
  3. Unmount and commit changes:
    DISM /Unmount-Image /MountDir:"C:\Mount" /Commit
  4. The image now includes the KB and any PC installed from it will already have the update applied.

This is for advanced deployment scenarios — most users don’t need DISM for individual updates.

How to verify the fix worked

  • Run Get-HotFix | Sort-Object -Property InstalledOn -Descending | Select-Object -First 5 in PowerShell. The KB should appear with today’s install date.
  • Open Settings → Windows Update → Update history. The KB shows Successfully installed.
  • Open System Information (msinfo32). OS Build should match the new build number from Microsoft’s release notes page for that KB.

If none of these work

If WUSA reports “The update is not applicable to your computer,” the KB doesn’t match your Windows 11 version — go back to the Microsoft Update Catalog and pick the correct variant (verify with winver what you’re running). If it reports “Update is already installed,” the KB is already applied (check Get-HotFix -Id KBxxxxxxx). If installation fails with error 0x80073712 or similar component-store errors, the WinSxS is corrupted — run DISM /Online /Cleanup-Image /RestoreHealth first, then retry the install. For chronic install failures on the same KB across multiple methods, check the Microsoft Release Health dashboard (aka.ms/releasehealth) for known issues — the KB may have a documented block on your hardware. The block is sometimes intentional and waiting for a future fix is the right move.

Bottom line: The Microsoft Update Catalog lets you skip the Windows Update rollout schedule — download the .msu, double-click, install. The .msu format is the same engine Windows Update uses under the hood.

ADVERTISEMENT