Power Plan Settings Greyed Out? Here's the Real Fix
Your power plan options are stuck greyed out. This fix removes a hidden policy that blocks them. Works on Windows 10 and 11.
Yeah, It's Annoying When Power Plans Go Stiff
You open Power Options, try to switch from Balanced to High Performance or Power Saver, and everything's greyed out. Can't click a thing. Happened to a client last month on a Dell laptop—took me five minutes to fix.
The Fix: One Registry Key to Remove
Skip all the driver reinstalls and BIOS checks. The real cause is a hidden group policy setting that locks these options. Here's how to kill it.
Step 1: Open Registry Editor
Press Windows + R, type regedit, hit Enter. If you get a UAC prompt, click Yes.
Step 2: Navigate to the Right Key
Go to this path:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings
If the PowerSettings folder doesn't exist, skip to Step 4—you might not have the policy at all, but it's rare.
Step 3: Delete the Problem Values
Inside PowerSettings, you'll see subkeys named with GUIDs (long strings like 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c). Click each subkey. On the right panel, look for a value named ACSettingIndex or DCSettingIndex. If either is set to 1, that's locking the setting. Delete that value (right-click → Delete). Do this for every subkey that has ACSettingIndex or DCSettingIndex set to 1.
Step 4: Reboot
Close Registry Editor and restart your PC. After reboot, open Power Options—everything should be clickable again.
Why This Works
Windows has a hidden group policy called "Do not allow power plan changes" that IT admins use on corporate machines. When enabled, it writes those ACSettingIndex and DCSettingIndex values as 1 (meaning "locked"). Even if you're not on a company network, some software installs or updates can flip this on accidentally. I've seen it happen after a Windows feature update and after installing Dell's Command Power Manager.
Removing those values tells Windows "this setting is not locked anymore." No reboot needed for the registry change itself, but the Power Options panel reads these values at startup, so you need to reboot to refresh it.
Less Common Variations of This Issue
Variation 1: Group Policy Editor (if you have Pro or Enterprise)
If you're on Windows 10/11 Pro, Enterprise, or Education, you can also fix this via Local Group Policy Editor:
- Press Windows + R, type
gpedit.msc, hit Enter. - Go to Computer Configuration → Administrative Templates → System → Power Management.
- Find "Specify the active power plan" and set it to "Not Configured".
- Also check "Do not allow power plan changes" under the same path—set to "Not Configured".
- Run
gpupdate /forcein Command Prompt as admin, then reboot.
But honestly, the registry fix works on every edition and is faster.
Variation 2: Power Plan Is Missing Entirely
Sometimes the plan itself is gone, not just greyed out. Use Command Prompt as admin:
powercfg -restoredefaultschemes
That brings back Balanced, High Performance, Power Saver. If it still doesn't show, run powercfg -list to see what's there, then powercfg -setactive GUID to switch manually.
Variation 3: Laptop-Specific — Manufacturer Utility Lock
On Dell, Lenovo, HP, or ASUS laptops, their power management app (like Dell Power Manager or Lenovo Vantage) can override Windows settings. Open that app and look for a setting like "Battery Health" or "Power Mode" that disables manual changes. Toggle it off or set to "Adaptive" or "Standard." I had an HP laptop once where the HP Support Assistant was secretly locking everything—uninstalling it fixed the greyed-out problem.
Prevention
To keep this from happening again, avoid installing manufacturer power utilities if you don't need them. If you do install them (like Dell Power Manager for battery charge limits), know that they can conflict with Windows settings. Also, after major Windows updates, check Power Options to see if they're still unlocked—updates sometimes reapply policies.
If you're on a corporate network and your IT department is pushing these policies, the registry fix will only last until the next group policy refresh (usually every 90 minutes). Talk to your IT admin to actually change the policy.
For everyone else, the registry fix above is permanent until some software flips it again. If it comes back, just repeat the steps—takes two minutes.
Was this solution helpful?