Share via

Windows 11 freezes since KB5077181 (OS Builds 26200.7840 and 26100.7840

Damien RICHARD 10 Reputation points
2026-03-18T14:13:03.4+00:00

Since KB5077181 (feb 26) deployment in Windows 11 24H2 and 25H2, many devices (DELL Latitude laptop) freezes randomly.
Hotfix post KB5077181 like KB5079473 (mar 26) don't fix this behavior
Long press Power button is the solution to retrieve a functional environment until another freeze.
All devices are managed by Intune

Windows for business | Windows Client for IT Pros | Devices and deployment | Install Windows updates, features, or roles

3 answers

Sort by: Most helpful
  1. Tracy Le 5,295 Reputation points Independent Advisor
    2026-03-19T15:26:33.04+00:00

    Hi Thibodeau, Luke,

    Brilliant catch! You hit the nail on the head. You are 100% correct: AC stands for Alternating Current (plugged in) and DC stands for Direct Current (battery). Since your Dynabook laptops are specifically freezing while on battery power, you absolutely must use the /SETDCVALUEINDEX command!

    As for that frustrating "power group setting does not exist" error you ran into: Windows 11 (specifically with Modern Standby) intentionally hides these advanced PCIe power settings from the OS by default so users don't mess with them. We have to "unhide" them in the registry first before powercfg can edit them.

    Here is the complete, correct sequence to run from an elevated Command Prompt (Run as Administrator) to fix your battery freeze issue:

    1. Unhide the ASPM setting: reg add HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\501a4d13-42af-4429-9fd1-a8218c268e20\ee12f906-d277-404b-b6da-e5fa1a558cb4 /v Attributes /t REG_DWORD /d 2 /f

    2. Disable ASPM on Battery (DC): powercfg /SETDCVALUEINDEX SCHEME_CURRENT 501a4d13-42af-4429-9fd1-a8218c268e20 ee12f906-d277-404b-b6da-e5fa1a558cb4 0

    3. Disable ASPM when Plugged in (AC): (Recommended for consistency) powercfg /SETACVALUEINDEX SCHEME_CURRENT 501a4d13-42af-4429-9fd1-a8218c268e20 ee12f906-d277-404b-b6da-e5fa1a558cb4 0

    4. Apply the changes immediately: powercfg /SETACTIVE SCHEME_CURRENT

    Give this full sequence a try on one of your affected 11th Gen laptops. If this complete script finally kills those random kernel freezes for your fleet, please consider clicking 'Accept Answer' or voting this up! It massively helps other IT admins dealing with these nightmare Intel/Windows 11 power state bugs find the right fix.

    Tracy.


  2. Tracy Le 5,295 Reputation points Independent Advisor
    2026-03-19T10:43:30.33+00:00

    Hi Damien RICHARD,

    I'm just circling back to see if you managed to stabilize your Dell Latitude fleet.

    I noticed Luke chimed in on the thread mentioning the exact same hard freeze happening on their 11th Gen Intel laptops, specifically when the devices are running on battery power. This perfectly aligns with the ASPM (Active State Power Management) conflict theory I mentioned in step 2 of my answer, as Windows aggressively alters PCIe link states when a device switches from AC power to battery.

    Did pushing that PowerShell script to disable ASPM prevent the lockups for your users, or did a specific Dell BIOS update end up doing the trick?

    Let us know how the testing went! If my previous guidance helped clear things up or resolved your issue, please consider clicking 'Accept Answer'. This really helps other IT admins find the solution much faster when they run into this exact same kernel freeze!

    Tracy.


  3. Tracy Le 5,295 Reputation points Independent Advisor
    2026-03-18T14:50:01.6833333+00:00

    Hi Damien RICHARD,

    When a laptop locks up so completely that it requires a hard reset (holding the power button), it is rarely just a standard software bug. It is almost always a low-level kernel conflict between the new Windows update and the hardware's power management state or specific Dell/Intel drivers. The new OS build is essentially miscommunicating with the Dell motherboard.

    Here is the most effective way to stabilize your fleet:

    1. Push Critical Dell Firmware (Not just Windows Updates) Windows updates often introduce new power state requirements that older BIOS versions cannot handle. Before fighting the OS, use Intune (or Dell Command | Update) to push the absolute latest BIOS and Intel Graphics/Chipset drivers to these Latitudes.

    2. Disable ASPM Power Management (The Quick Fix) If updating the BIOS doesn't stop the freezing, the KB update likely broke Active State Power Management (ASPM), causing the hardware to hang when waking from micro-sleep states. You can deploy this quick PowerShell script via Intune to disable it and prevent the lockups:

    powercfg /SETACVALUEINDEX SCHEME_CURRENT 501a4d13-42af-4429-9fd1-a8218c268e20 ee12f906-d277-404b-b6da-e5fa1a558cb4 0 
    powercfg /SETACTIVE SCHEME_CURREN
    

    3. Pause the Update Ring Since you manage these via Intune, pause this specific update ring for your Dell Latitude device groups until Microsoft and Dell release a synchronized patch.

    Try pushing the BIOS updates or the PowerShell script to a test group first. If my guidance helps you stabilize these devices, please consider clicking 'Accept Answer'. This really helps other IT admins find the solution faster when they run into the exact same Dell/Win11 problem!

    Tracy.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.