HomeNewsletterCommunityToolsArchiveBlogToday's NewsAboutQuick Links Subscribe free
← Back to Blog
Windows 11 Windows 11Windows UpdatePatch TuesdayIntunePowerShellWUfB

Windows Monthly Updates Explained: LCU, SSU, Patch Tuesday and What Actually Gets Installed

IA
Imran Awan
12 July 2026

Every month, Windows ships updates. Your users see a notification, click Install, and assume you understand exactly what just happened. In most environments, that assumption is wrong — and when something breaks after Patch Tuesday, not knowing the difference between an LCU and a preview release means you are debugging blind.

This post breaks down the Windows monthly update model precisely — what each release type is, when it ships, what it contains, and how to control it in Intune and Windows Update for Business.

Watch this post — NotebookLM Audio Overview

Generated with NotebookLM · Subscribe at endpointweekly.com

The Windows monthly update calendar

Microsoft ships Windows quality updates on a predictable monthly cadence built around two fixed weeks:

B
Patch Tuesday — 2nd Tuesday of the month
The B release. This is the mandatory monthly security update. Cumulative — contains everything from all previous months. This is what your WSUS, Intune update ring, or Windows Update for Business deploys automatically. Also called the Latest Cumulative Update (LCU).
C
Preview release — 3rd Tuesday of the month (optional)
The C release. Non-security fixes and improvements that will be included in next month's B release. Optional — devices do not install this automatically. IT admins can use it to validate fixes before next Patch Tuesday. If you are not actively testing, your devices skip this entirely.
OOB
Out-of-band releases — any time
Emergency security patches released outside the normal cadence. Rare, but critical — these are the "stop what you're doing and patch" updates. Microsoft publishes MSRC advisories when an out-of-band update ships. Monitor the Windows message centre and MSRC blog for these.
Note: There is no longer a separate D release week (4th Tuesday) for all Windows versions. The C preview release is the only optional mid-month update for Windows 11 and Windows 10 in mainstream support.

Update types demystified

TermWhat it isShips when
LCU (Latest Cumulative Update)The monthly security + quality update. Cumulative — replaces all previous LCUs. This is what Patch Tuesday delivers.2nd Tuesday (B)
SSU (Servicing Stack Update)Updates the component that installs updates. Since 2021, SSUs are bundled into the LCU for Windows 11 and Windows 10 21H2+. You no longer install SSU separately.Bundled in LCU
Preview LCUNon-security fixes preview. Optional. Will be in next month's LCU if accepted.3rd Tuesday (C)
Feature updateAnnual OS version upgrade (e.g. 23H2 → 24H2). Managed separately via feature update policies.Annually (H2)
Driver updateHardware driver updates. Can be separated from quality updates in Windows Update for Business.Rolling
Definition updateMicrosoft Defender antivirus signature updates. Ship multiple times daily. Not part of the monthly LCU.Multiple times daily
Gotcha: The SSU is now bundled inside the LCU for modern Windows versions. If you are managing older Windows 10 builds (before 21H2), you may still need to install SSUs separately before the LCU. Always check the KB article for your specific Windows version — the servicing stack requirement is listed explicitly in the prerequisites section.

What "cumulative" actually means in practice

Every LCU contains all fixes from all previous LCUs for that Windows version and servicing branch. This means:

Watch out: "Cumulative" does not mean the update file is small. LCUs are often 500 MB–2 GB because they contain all the binary patches since the feature update baseline. Plan your network bandwidth accordingly, especially for branch offices. Use Delivery Optimization or BranchCache to reduce WAN traffic.

How to control updates in Intune

Windows Update for Business — Update rings

A typical three-ring model:

RingDeferral (quality updates)Target
Pilot0 daysIT team, early adopters (~5%)
Early7 daysBusiness leads, power users (~20%)
Broad21 daysGeneral population (~75%)
PowerShell 7 — Check installed update history
# Get the last 10 installed Windows updates with KB numbers and install dates
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 10 |
    Select-Object HotFixID, Description, InstalledOn, InstalledBy |
    Format-Table -AutoSize
Output
HotFixID   Description         InstalledOn          InstalledBy
--------   -----------         -----------          -----------
KB5040529  Security Update     08/07/2026 00:00:00  NT AUTHORITY\SYSTEM
KB5039302  Security Update     11/06/2026 00:00:00  NT AUTHORITY\SYSTEM
KB5036893  Security Update     09/04/2026 00:00:00  NT AUTHORITY\SYSTEM

Check the current Windows Update deferral policy via registry

PowerShell 7 — Read WUfB registry settings
# Read Windows Update for Business deferral settings from registry
$wufb = Get-ItemProperty "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -ErrorAction SilentlyContinue

if ($wufb) {
    [PSCustomObject]@{
        QualityDeferralDays   = $wufb.DeferQualityUpdatesPeriodInDays
        FeatureDeferralDays   = $wufb.DeferFeatureUpdatesPeriodInDays
        PauseQualityUpdates   = $wufb.PauseQualityUpdates
        ManageUpdatesByRing   = $wufb.BranchReadinessLevel
        WUServer              = $wufb.WUServer
    } | Format-List
} else {
    Write-Host "No WUfB policy found — device using default Windows Update settings" -ForegroundColor Yellow
}
Intune — Update ring — Broad ring device status
KB5040529 (July 2026 LCU) ✓ Succeeded — 847 devices
KB5040529 (July 2026 LCU) ▶ In progress — 112 devices
KB5040529 (July 2026 LCU) ✕ Failed — 14 devices

CSP and Group Policy coverage

Intune OMA-URI (CSP) — quality update deferral

OMA-URITypeExample valueEffect
./Vendor/MSFT/Policy/Config/Update/DeferQualityUpdatesPeriodInDaysInteger21Defer quality (security) updates by 21 days
./Vendor/MSFT/Policy/Config/Update/DeferFeatureUpdatesPeriodInDaysInteger180Defer feature (annual) updates by 180 days
./Vendor/MSFT/Policy/Config/Update/PauseQualityUpdatesInteger1Pause all quality updates (max 35 days)
./Vendor/MSFT/Policy/Config/Update/ExcludeWUDriversInQualityUpdateInteger1Exclude driver updates from Windows Update

Group Policy equivalent

GPO settingPath
Defer quality updatesComputer Configuration › Administrative Templates › Windows Components › Windows Update › Windows Update for Business › Select when Quality Updates are received
Defer feature updatesComputer Configuration › Administrative Templates › Windows Components › Windows Update › Windows Update for Business › Select when Preview Builds and Feature Updates are received
Pause quality updatesComputer Configuration › Administrative Templates › Windows Components › Windows Update › Windows Update for Business › Pause quality updates
Tip: Use the Intune built-in Update ring policy instead of raw OMA-URI for quality update deferral — it wraps the same CSPs in a purpose-built UI with per-ring reporting. Use OMA-URI only for settings the Update ring policy UI does not expose (e.g. ExcludeWUDriversInQualityUpdate).

Troubleshooting: why a device is not installing the latest update

Check the Windows Update log on the device. The log is written in a binary ETL format — use this PowerShell command to decode it:

PowerShell 7 — Decode Windows Update log
# Decode the binary ETL update log to a readable text file
Get-WindowsUpdateLog -LogPath "C:\Logs\Intune\WindowsUpdate.log"

# Then search for failures
Select-String -Path "C:\Logs\Intune\WindowsUpdate.log" -Pattern "FAILED|Error|0x8" |
    Select-Object -Last 20 |
    Format-List LineNumber, Line
Gotcha: Get-WindowsUpdateLog requires the Windows Symbols package to decode correctly. If you run it on a device without symbols, the log will be partially decoded with [symbolerror] placeholders. The simplest workaround: run it on the device locally (not remotely via PowerShell remoting) where the matching symbol files are available.

References

Listen to this post — NotebookLM Audio Overview

Generated with NotebookLM · Subscribe at endpointweekly.com

Share this post
LinkedIn X / Twitter Reddit Bluesky

More from EndpointWeekly

Windows 11
Microsoft's AI Is Hunting Windows Vulnerabilities Before…
Microsoft's MDASH — a multi-model AI scanning harness — is now hunting Windows…
Windows 11
Windows Settings Backup Is On by Default From 26H2 — What You…
Starting with Windows 11 26H2, eligible devices will have settings backup on by default.…
Intune
How to Look Up a Windows Autopilot Device by Serial Number Using…
The exact Graph PowerShell filter syntax to look up any Autopilot device by serial number…