You’re hitting “Invalid Parameters” because the alias is wrong. Use PERFEPP (not PERFENERGYPOLICY), or the GUID. To unhide a setting you use -ATTRIB_HIDE (minus removes the Hidden attribute).
Do this in an elevated CMD or PowerShell:
- Unhide the controls
powercfg -attributes SUB_PROCESSOR PERFEPP -ATTRIB_HIDE
powercfg -attributes SUB_PROCESSOR PERFEPP1 -ATTRIB_HIDE
powercfg -attributes SUB_PROCESSOR PERFBOOSTMODE -ATTRIB_HIDE
(PERFEPP GUID: 36687f9e-e3a5-4dbf-b1dc-15eb381c6863)
- Set quieter behavior (example)
powercfg -setacvalueindex scheme_current sub_processor PERFEPP 85
powercfg -setdcvalueindex scheme_current sub_processor PERFEPP 95
powercfg -setacvalueindex scheme_current sub_processor PERFBOOSTMODE 4
powercfg -setdcvalueindex scheme_current sub_processor PERFBOOSTMODE 4
powercfg -setactive scheme_current
(PERFBOOSTMODE: 0=Disabled, 1=Enabled, 2=Aggressive, 3=Efficient Enabled, 4=Efficient Aggressive.
Tip: Verify the aliases exist on your build:
powercfg /qh | findstr /i "PERFEPP PERFBOOSTMODE"
If they don’t show, use the GUID with -attributes as above. This will expose the settings under Control Panel > Power Options > Advanced > Processor power management, letting you tune EPP and Boost to reduce fan ramping.