Hello Stephen Edgington,
Thank you for posting this and for following up with your results.
You were looking for a reliable way to set Processor performance boost mode to Enabled (instead of the default Aggressive) for both battery and plugged-in states across multiple Windows 11 Education laptops. Because the devices are locked down and you needed this applied consistently after installation, you were exploring options that could be included in an automated post-install PowerShell script.
The commands you used are the correct and supported method:
powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_PROCESSOR PERFBOOSTMODE 1
powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_PROCESSOR PERFBOOSTMODE 1
These commands directly update the ACSettingIndex and DCSettingIndex values for the active power scheme, which is why Control Panel now correctly reflects “Enabled”. This approach is more reliable for scripted deployments than editing the definition key in the registry.
As an optional improvement for your script, you can also run the following command once to make the setting visible in Advanced Power Settings (in case it needs to be checked manually later):
powercfg -attributes SUB_PROCESSOR PERFBOOSTMODE -ATTRIB_HIDE
Thank you for testing this and sharing the working commands. Your experience will be helpful to others who need to apply the same change in automated deployments or managed environments.