Power Options Shows Only “Balanced” Plan

When you open Power Options, only the Balanced plan will be shown. Other schemes, such as “High performance,” “Ultimate,” and “Power Saver,” may be missing. This is normal on systems that support Modern Standby (S0 Low Power Idle).

power options shows only balanced - disable modern standby

You can check that by running the command “powercfg /a“. If it says the following, Modern standby is enabled:

The following sleep states are available on this system:
    Standby (S0 Low Power Idle) Network Connected
    Hibernate
    Fast Startup

If Modern Standby is enabled, the traditional power states S1, S2, and S3 are turned off.

System Sleeping States – Windows drivers | Microsoft Learn

If you need the additional power schemes anyway, disable Modern Standby.

Workaround

Step 1: Turn off Modern Standby

To turn off Modern standby (S0 Low Power Idle), open an admin Command Prompt and run this command:

reg add HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /t REG_DWORD /d 0 /f

Press Enter.

Note: If you later wish to undo (reverse) the above setting to reenable Modern Standby, run:

reg delete  "HKLM\System\CurrentControlSet\Control\Power" /v PlatformAoAcOverride /f

Restart Windows for the change to take effect.

Open Power Options and see if the additional power schemes are shown.




Step 2: Run the Powercfg commands

If they don’t appear, run the following commands from an admin Command Prompt to add the missing power plans:

Restore the Power saver power plan:

powercfg -duplicatescheme a1841308-3541-4fab-bc81-f71556f20b4a

Restore the High Performance power plan:

powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

Restore the Ultimate Performance power plan:

powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

Restore the Balanced power plan:

powercfg -duplicatescheme 381b4222-f694-41f0-9685-ff5bb260df2e

Close and reopen Power Options Control Panel.

power options shows only balanced - disable modern standby


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

6 thoughts on “Power Options Shows Only “Balanced” Plan”

    • @Derek: I wonder the REG command wasn’t executed correctly. What was the output when you ran the command?

      Also, what’s shown when you run “powercfg /a”?

  1. The following sleep states are available on this system: Standby (S0 Low Power Idle ) Network Connected
    Hibernate
    Fast Startup.

    The following Sleep States not available on this system – with other details too long to add.
    Standby (S1) (S2) (S3)

    Reply
  2. @Derek.

    Your output shows Modern standby is still enabled. Please rerun the “reg.exe add….” command posted in the article. Post a screenshot of the output.

    Restart windows.

    Reply
  3. the “reg.exeadd…” doesnt work , following error,
    “C:\Windows\System32>reg add HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /t REG_DWORD /d 0​
    ERROR: Invalid syntax. Specify valid numeric value for ‘/d’.
    Type “REG ADD /?” for usage.”

    Reply
    • @Stev:

      A hidden character (zwsp) seems to be copied when you copy the command from the article. Please remove the empty character at the end of the command-line.

      I’ve added a ” /f” at the end. please try the updated command below.

      reg add HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /t REG_DWORD /d 0 /f

Leave a Comment