Restore Missing Power Plans in Windows 11
Windows 11 often hides advanced power plans—such as High Performance and Ultimate Performance—by default to optimize battery life and support Modern Standby (S0). This guide provides the exact steps to restore these missing power schemes using simple command-line tools and registry adjustments, allowing you to unlock maximum hardware performance on your PC.
Method 1: Restore Missing Plans Using Command Prompt
The fastest way to restore missing power plans is to re-add their default GUIDs using the Windows Command Prompt.
- Press Win + S, type
cmd, right-click Command Prompt, and select Run as administrator. - Copy and paste the command for the power plan you want to restore, then press Enter:
Ultimate Performance:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61High Performance:
powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635cBalanced:
powercfg -duplicatescheme 381b4222-f694-41f0-9685-ff5bb260df2ePower Saver:
powercfg -duplicatescheme a1841308-3541-4fab-bc81-f71556f20b4a
- Open the Control Panel, navigate to Hardware and Sound > Power Options, and select your newly restored plan.
Method 2: Reset All Power Schemes
If the commands do not work, resetting the default power configuration can resolve underlying system conflicts.
Open Command Prompt as administrator.
Run the following command:
powercfg -restoredefaultschemesRestart your computer and check Power Options in the Control Panel.
Method 3: Disable Modern Standby (Connected Standby)
Many modern laptops and prebuilt PCs enforce Modern Standby (S0), which intentionally hides custom and advanced power plans. Disabling it forces Windows to use standard S3 sleep, making all power plans visible.
Open Command Prompt as administrator.
Type the following command and press Enter:
reg add HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /t REG_DWORD /d 0Restart your computer.
Run the duplication commands from Method 1 again if the plans do not appear automatically.
(Note: To re-enable Modern Standby in the future, run
reg delete HKLM\System\CurrentControlSet\Control\Power /v PlatformAoAcOverride /f
and restart.)