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.