Microsoft released six dynamic updates for Windows 11 this cycle, covering versions 26H1, 25H2, 24H2, and 23H2 — including KB5126056 and KB5124015. They fix security issues in Windows Setup components and refresh the Windows Recovery Environment (WinRE), with delivery handled automatically through Windows Update.
Read that last part again: automatically through Windows Update. That phrase is doing a lot of heavy lifting. It covers devices that are enrolled, online, and checking in. It says nothing about the lab PC on the forgotten switch port, the manager's desktop that hasn't phoned home in three months, or the kiosk on a VLAN nobody has documented since 2023.
And there is a second trap. Dynamic updates don't install like a normal cumulative update. They patch setup binaries and the recovery image in place — which means they rarely show up in Get-HotFix, update history, or the compliance dashboards most RMM platforms build. Your patch report can say "compliant" while the components that decide whether your next feature rollout succeeds — and whether recovery works when a disk dies — are months out of date.
If your only view of the network is an RMM agent list and a quarterly scan, you are blind to exactly this class of update. Here is why that matters, what it costs, and how to fix it.
The Problem in Depth: The Updates Your Dashboard Can't See
Dynamic updates are a different animal. Setup, WinRE, and safe OS dynamic updates service the components that run around the OS — the setup engine, the recovery image, the servicing stack. They don't land in the hotfix list the way a KB-numbered cumulative update does. Patch engines that report compliance from LCU and SSU state alone will show green while the setup binaries that will execute your next in-place upgrade remain stale.
What that costs in practice:
- Feature update deployments that fail and roll back. A stale setup dynamic update is a classic cause of in-place upgrades that stall, throw an error, and revert — after 40 to 90 minutes of the machine being unusable. On a 500-seat rollout with an 8% failure rate, that is 40 rollbacks and roughly a week of technician time running upgrades one at a time and reading setup logs.
- WinRE that fails when you need it most. This isn't hypothetical. In late 2022, Microsoft had to ship a manual PowerShell script to update WinRE across entire fleets because the recovery image on most Windows endpoints was years old and exposed to BitLocker recovery key extraction (CVE-2022-41099). Most teams discovered in that moment that WinRE wasn't covered by any patch policy they owned.
- Devices you don't know about never get any of it. "Automatic delivery through Windows Update" is a guarantee only for endpoints enrolled in a management plane. Every unmanaged device on your network — the ones your last discovery scan missed — is a permanent zero in your real patch posture.
Why the gaps exist — siloed tooling:
- Your RMM sees only what runs an agent. Agentless devices — printers, IP cameras, network gear, that one appliance the vendor won't let you instrument — don't exist in your inventory or patch data at all.
- Patch truth lives in ConnectWise Automate or NinjaOne, tickets live in the helpdesk, and network truth lives in a Visio file from 18 months ago. When failed upgrades cluster on one subnet, nobody can tell you which switch and uplink feeds it.
- The helpdesk holds tickets like "laptop won't boot after update" with no device history, no patch state, and no topology context attached. The tech troubleshoots blind, escalates, and the user waits.
- SLA and audit reports get assembled by hand from three tools, and the numbers never reconcile.
The measurable impact: longer mean time to resolve, more rollback tickets, 2 a.m. pages when a broken recovery environment turns a routine disk swap into an overnight rebuild, and an audit conversation you can't win because your patch report doesn't reflect what is actually deployed.
How AlertMonitor Solves This
The dynamic update problem is, at its core, a visibility problem. You cannot verify, patch, or support devices you don't know are on the network. That is exactly what AlertMonitor's Network Monitoring & Visibility layer exists to fix.
Continuous, agentless discovery. AlertMonitor scans your networks with SNMP, ARP, and active discovery and maps every device it finds — switches, firewalls, access points, printers, IP cameras, and unmanaged endpoints. Not a quarterly snapshot: a live topology map that updates the moment a device appears, a link drops, or a switch goes offline.
Instant alerts with full network context. When a Windows 11 workstation shows up on the finance VLAN that your RMM has never seen, an alert fires immediately — not at the next audit. You can enroll it into patch management before it misses the update train. When a port flaps or a device vanishes, the alert arrives with topology context: which device, which port, what sits downstream.
One platform, one data model. Because monitoring, RMM, patch management, and helpdesk share the same inventory, the workflow changes shape:
Old way: A ticket arrives — "user says the update broke their laptop." The tech opens the RMM to find the device, opens a separate patch tool to check update state, asks around for a network diagram, and spends 45 minutes assembling context before touching anything.
AlertMonitor way: The alert or ticket already carries the device, its live map position, its patch state, and its check history. The tech runs a remote action from the same console. What took three tools and 45 minutes takes one console and five.
The outcome for a wave like this one: every discovered endpoint is automatically in scope for patch policies, so you know which machines received the fixes through Windows Update — and you get alerted about any device that isn't enrolled. Your silent failure surface for the next feature rollout shrinks from "unknown" to "zero, verified on the map."
Practical Steps: Get Ahead of the Next Dynamic Update Wave
1. Check WinRE freshness across your Windows 11 fleet today. Run reagentc /info to confirm recovery is enabled, then use the last-modified date of winre.wim as a fast, honest proxy for recovery-image health. Anything months old deserves attention:
# Check WinRE image freshness across a batch of Windows 11 endpoints
$targets = Get-Content .\workstations.txt
Invoke-Command -ComputerName $targets -ScriptBlock {
$wim = "C:\Windows\System32\Recovery\winre.wim"
if (Test-Path $wim) {
[PSCustomObject]@{
Computer = $env:COMPUTERNAME
WinREDate = (Get-Item $wim).LastWriteTime
AgeDays = ((Get-Date) - (Get-Item $wim).LastWriteTime).Days
}
} else {
[PSCustomObject]@{
Computer = $env:COMPUTERNAME
WinREDate = "MISSING"
AgeDays = 9999
}
}
} | Sort-Object AgeDays -Descending | Format-Table -AutoSize
2. Prove to yourself that your patch report can't see dynamic updates. Try to locate KB5126056 or KB5124015 with the standard tooling. The empty result is the lesson:
# Dynamic updates frequently never appear here - that is the visibility gap
Get-HotFix |
Where-Object { $_.HotFixID -in 'KB5126056','KB5124015' } |
Select-Object CSName, HotFixID, InstalledOn
If your compliance reporting leans solely on hotfix IDs, you are reporting on a subset of your true patch state — and so is every tool that works the same way.
3. Find the devices your RMM doesn't know about. A quick sweep of a client or office subnet takes seconds (requires PowerShell 7+ for -Parallel). Any responder that isn't in your inventory is an endpoint that will not receive KB5126056 — or anything after it — until you enroll it:
# Ping sweep a /24 - anything not in your RMM inventory is outside your patch radar
1..254 | ForEach-Object -Parallel {
$ip = "192.168.10.$_"
if (Test-Connection -ComputerName $ip -Count 1 -Quiet) { $ip }
} -ThrottleLimit 64
4. Make this continuous instead of manual. In AlertMonitor, enable network discovery on every site or client, then configure a "new device detected" alert. Wire it into your patch workflow: new Windows endpoint appears → it is auto-tagged and added to the Windows 11 patch policy → compliance shows up on the live topology map. The next time Microsoft ships dynamic updates for Setup and WinRE, you don't run a sweep or open a spreadsheet — you already know every device in scope, and every out-of-scope device gets flagged before it becomes shadow IT.
That is the difference between reading about KB5126056 in a changelog and knowing, with evidence, which devices in your environment received it — and which ones you need to go find.
Related Resources
AlertMonitor Network Monitoring & Visibility AlertMonitor Platform Overview Book a Demo Network Monitoring & Visibility Resources
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.