Windows 11 25H2 System Tray Disappears After KB5121003 and KB5120998 – Reproduced and Tested

Summary: In my Windows 11 25H2 lab, the entire system tray disappeared after installing KB5121003 and disappeared again after installing the later KB5120998 cumulative preview. Removing KB5121003 rolled the VM back to OS Build 26200.8037 and immediately restored the clock, network, volume and notification area. This post documents the reproduction, rollback, temporary block and the follow-up test with KB5120998.

This is a lab reproduction, not a claim that every Windows 11 25H2 device will experience the same problem. At the time of writing, Microsoft does not list this exact whole-system-tray symptom as a known issue for KB5121003.

Lab environment and starting point

The test system was a non-touch Windows 11 25H2 virtual machine. The affected starting build was 26200.9168. Microsoft documents that build as the Windows 11 25H2 build delivered by the August 11, 2026 security update KB5121003.

Windows 11 25H2 About Windows showing OS Build 26200.9168
Figure 1 – Windows 11 25H2 running OS Build 26200.9168 before the rollback test.

Windows Update history also showed KB5121003 as successfully installed.

Windows Update history showing KB5121003 installed on Windows 11 25H2
Figure 2 – Windows Update history confirms KB5121003 was installed on the affected Windows 11 25H2 system.

If you want to verify the installed state from PowerShell, use:

PowerShell
Get-HotFix -Id KB5121003

What the problem looked like

After the update and restart, the taskbar itself still loaded, but the entire system tray area on the right side disappeared. The clock, network, volume and other notification-area icons were all missing.

Windows 11 25H2 taskbar with system tray icons and clock missing after KB5121003
Figure 3 – The entire system tray area, including the clock, network and volume icons, was missing after KB5121003.

The useful result came from comparing the same VM before and after removing the cumulative update.

Rollback test: remove KB5121003

One complication was Windows Update automatically offering the same security update again. To keep the first restart clean enough to test the rollback, I temporarily paused Windows Update before uninstalling KB5121003.

Windows Update paused before uninstalling KB5121003
Figure 4 – Windows Update was paused before uninstalling KB5121003 to prevent an immediate automatic reinstall during the first restart.

I then started the uninstall from an elevated PowerShell window. The command opens Windows Update Standalone Installer and asks for confirmation.

Windows Update Standalone Installer confirming removal of KB5121003
Figure 5 – Windows Update Standalone Installer confirms removal of Security Update KB5121003.
PowerShell
wusa /uninstall /kb:5121003

After the removal completed, Windows required a restart to finish the servicing operation.

Windows restart required after uninstalling KB5121003
Figure 6 – A restart is required to complete the KB5121003 removal.

Result after uninstall: the system tray returned

The first restart after removing KB5121003 produced the clearest A/B result in the test: the system tray returned immediately. The clock, network, volume and the rest of the notification area were visible again.

Windows 11 system tray and clock restored after uninstalling KB5121003
Figure 7 – After KB5121003 was removed and Windows restarted, the system tray and clock returned.

The update was no longer installed after the rollback. Get-HotFix -Id KB5121003 returned no matching hotfix, and winver showed that the rollback returned Windows 11 25H2 to OS Build 26200.8037.

Windows 11 25H2 Build 26200.8037 after uninstalling KB5121003
Figure 8 – Removing KB5121003 rolled the lab VM back to Windows 11 25H2 OS Build 26200.8037.

Prevent KB5121003 from reinstalling automatically

Because Windows Update can offer KB5121003 again, I used the PSWindowsUpdate module to hide the update after the rollback. PSWindowsUpdate is a third-party PowerShell module available from the PowerShell Gallery.

If the module is not already installed, install it from an elevated PowerShell session:

PowerShell
Install-Module PSWindowsUpdate -Force

After the rollback, resume Windows Update so the update becomes visible to the Windows Update API. Once KB5121003 is offered again, hide it before allowing another restart:

PowerShell
Hide-WindowsUpdate -KBArticleID KB5121003 -Confirm:$false

Get-WindowsUpdate -IsHidden -KBArticleID KB5121003
PowerShell showing KB5121003 hidden with PSWindowsUpdate
Figure 9 – PSWindowsUpdate shows KB5121003 with hidden status, preventing the same update from being offered again.

The H flag in the output confirms that KB5121003 is hidden. This was useful for keeping the VM on the working rollback build while I continued testing.

Then I tested the newer KB5120998 Preview

Leaving an August security cumulative update removed is not a good long-term answer, so I tested the later KB5120998 cumulative preview. Microsoft describes KB5120998 as a cumulative preview for Windows 11 25H2/24H2 and documents OS Build 26200.9278. Windows client updates are cumulative, so the later package also carries forward fixes from previous cumulative updates.

The release notes made this test particularly interesting: under Taskbar, Microsoft states that KB5120998 improves the reliability of loading the system tray area on non-touch PCs. My lab VM is a non-touch Windows 11 client, so this newer build looked like the better path to test. Microsoft lists this Taskbar change under the gradual-rollout section, so availability can vary by device even when KB5120998 is installed. In this VM, simply moving to build 26200.9278 did not restore the tray.

Windows 11 25H2 Build 26200.9278 after installing KB5120998 Preview
Figure 10 – Installing KB5120998 Preview moved the VM forward to OS Build 26200.9278.

However, after installing KB5120998 and restarting, the entire system tray disappeared again.

Windows 11 system tray missing again after installing KB5120998 Preview
Figure 11 – The system tray disappeared again after installing KB5120998 and restarting Windows.

So in this lab, KB5120998 did not provide a working replacement for the rollback. The issue was reproducible on both 26200.9168 with KB5121003 and 26200.9278 with KB5120998.

Test results

Test stateOS buildResult
KB5121003 installed26200.9168System tray missing
KB5121003 removed26200.8037System tray restored
KB5120998 Preview installed26200.9278System tray missing again

Hiding KB5121003 with PSWindowsUpdate allowed me to keep the working rollback state long enough to continue the lab tests.

Temporary lab workaround at a glance

  1. Pause Windows Update before uninstalling KB5121003.
  2. Run wusa /uninstall /kb:5121003 from an elevated PowerShell window.
  3. Restart Windows and verify that the system tray returns.
  4. Install PSWindowsUpdate if it is not already present.
  5. Resume Windows Update so KB5121003 becomes visible again, then hide it before another restart.
  6. Verify the hidden state with Get-WindowsUpdate -IsHidden -KBArticleID KB5121003.

Security warning: treat the rollback only as a temporary workaround

KB5121003 is a security update. Removing it rolls back the security fixes delivered by that cumulative update. Hiding it indefinitely would therefore leave the device below the current security servicing level.

KB5120998 is cumulative and carries forward previously released fixes, which is why I tested it as a possible safer path. Unfortunately, the system-tray problem returned on that build in my lab. For production systems, I would treat the rollback-and-hide method only as a short troubleshooting workaround while evaluating the security impact and waiting for a newer cumulative update or a Microsoft-supported resolution.

What this test proves — and what it does not

The controlled rollback gives strong evidence that the behavior on this VM is tied to changes present in the August cumulative update branch: the tray was missing on 26200.9168, returned on 26200.8037, and disappeared again on the later 26200.9278 cumulative preview.

It does not prove that KB5121003 or KB5120998 will cause the same symptom on every Windows 11 25H2 device, and it does not identify the exact component or code change responsible. The reproducible build transition is the useful troubleshooting result.

References

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.