You set your Windows 11 PC to the High Performance or Ultimate Performance power plan, but after waking it from sleep, Windows reverts to Balanced. This happens because the Windows Power Efficiency Diagnostics tool or a built-in background service detects your custom plan and resets it to save energy. In this article, you will learn why Windows 11 forces Balanced after sleep and how to stop it using Group Policy, Command Prompt, and Registry edits.
Key Takeaways: Stop Windows 11 From Resetting Your Power Plan After Sleep
- Powercfg /setactive GUID: Forces your chosen power plan GUID to stay active and prevents reversion after sleep.
- Group Policy > System > Power Management > Specify Active Power Plan: Locks the power plan so Windows cannot change it.
- Registry key HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerPolicies: Disables the automatic reset behavior for all users.
Why Windows 11 Reverts to Balanced After Sleep
Windows 11 includes a background process called the Power Efficiency Diagnostics tool, which runs after the system wakes from sleep. This tool checks whether the current power plan meets Microsoft’s energy-saving guidelines. If the active plan is High Performance or Ultimate Performance, the tool considers it inefficient and automatically switches the system to Balanced.
This behavior is by design for laptops and desktops running Windows 11 version 22H2 and later. Microsoft wants to reduce power consumption across all devices. The reversion is not caused by a driver failure or user error. It is a built-in policy that overrides your manual selection every time the computer resumes from sleep.
The Balanced plan limits CPU maximum frequency to 100 percent but does not prevent the CPU from boosting under load. However, users who need consistent high performance for gaming, video editing, or virtual machines often prefer High Performance or Ultimate Performance. These plans disable aggressive power-saving features such as PCI Express Link State Power Management and processor minimum state reduction.
Methods to Prevent Power Plan Reversion After Sleep
Three methods can stop Windows 11 from reverting your power plan. Use the command-line method first because it is quick and does not require administrative policy changes. If that does not work, use Group Policy or the Registry editor.
Method 1: Set the Power Plan via Command Line With Powercfg
- Open Command Prompt as administrator
Press the Start button, type cmd, right-click Command Prompt in the search results, and select Run as administrator. Click Yes in the User Account Control prompt. - List all available power plans
Type powercfg /list and press Enter. You will see a table with a GUID for each plan. The GUID is a long alphanumeric string like 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c. Write down the GUID of the plan you want to use. - Activate the desired power plan
Type powercfg /setactive GUID where GUID is the exact string from the list. Example: powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c. Press Enter. The system confirms the change with no error message if successful. - Create a scheduled task to reapply the plan after every wake
Open Task Scheduler by typing taskschd.msc in the Run dialog Win + R. Click Create Task in the Actions pane. Name the task Force Power Plan After Wake. Select Run whether user is logged on or not. Check Run with highest privileges. On the Triggers tab, click New, select On an event from the Begin the task dropdown, set Log to System, Source to Kernel-Power, and Event ID to 507. On the Actions tab, click New, set Action to Start a program, Program/script to powercfg, and Arguments to /setactive GUID using your plan GUID. Click OK to save the task.
Method 2: Lock the Power Plan With Group Policy
Group Policy is available on Windows 11 Pro, Enterprise, and Education editions. Windows 11 Home users should use Method 3 instead.
- Open Local Group Policy Editor
Press Win + R, type gpedit.msc, and press Enter. - Navigate to the power plan policy
Go to Computer Configuration > Administrative Templates > System > Power Management. Select the folder named Specify Active Power Plan. - Enable and set the active power plan
Double-click Specify Active Power Plan. Select Enabled. In the Active Power Plan dropdown, choose your preferred plan. Click OK. This policy prevents any process, including the Power Efficiency Diagnostics tool, from changing the plan. - Apply the policy
Open Command Prompt as administrator and type gpupdate /force. Press Enter. Restart your computer to ensure the policy takes effect.
Method 3: Disable Automatic Plan Switching via Registry
- Open Registry Editor
Press Win + R, type regedit, and press Enter. Click Yes in the User Account Control prompt. - Navigate to the Power Policies key
In the left pane, go to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerPolicies. If the PowerPolicies folder does not exist, right-click the Power folder, select New > Key, and name it PowerPolicies. - Create a DWORD value to disable reversion
Right-click the PowerPolicies key, select New > DWORD 32-bit Value. Name it NoPowerPlanChange. Double-click the new value, set the data to 1, and click OK. - Restart your computer
Close Registry Editor and restart Windows 11. After the restart, the system will not revert your power plan after sleep.
If Windows 11 Still Resets the Power Plan After the Fix
Power Efficiency Diagnostics Tool Continues to Run
The Power Efficiency Diagnostics tool runs as part of the Microsoft-Windows-Kernel-Power event provider. Even with Group Policy or Registry changes, the tool may still trigger a reversion on some systems. To stop it, disable the tool entirely via the Services console. Press Win + R, type services.msc, and press Enter. Find the service named Windows Power Efficiency Diagnostics. Double-click it, set Startup type to Disabled, and click OK. Restart the computer.
Third-Party Power Management Software Overrides Your Settings
Laptop manufacturers such as Dell, Lenovo, and HP include their own power management utilities. These tools can override Windows settings after sleep. Open the manufacturer’s power management app and disable any option that automatically adjusts the power plan. On Dell systems, look for Dell Power Manager and set the thermal and power settings to High Performance or Custom. On Lenovo, check Lenovo Vantage and disable Smart Settings for power.
Windows Update Restores Default Power Plans
A major Windows 11 feature update may reset all power plans to default. After an update, reapply the Group Policy or Registry changes. To prevent this, pause feature updates for up to 60 days. Go to Settings > Windows Update > Advanced options > Pause updates and select a date.
High Performance vs Balanced Power Plan: Key Differences
| Item | High Performance | Balanced |
|---|---|---|
| Description | Keeps CPU at high speed at all times; disables most power-saving features | Dynamically adjusts CPU speed based on workload; enables all power-saving features |
| Minimum processor state | 100% | 5% |
| Maximum processor state | 100% | 100% |
| PCI Express Link State Power Management | Off | Maximum power savings |
| Hard disk turn off after | 20 minutes | 10 minutes |
| Wireless adapter power saving | Maximum performance | Medium power saving |
| Sleep after | 30 minutes | 15 minutes |
After reading this article, you can stop Windows 11 from reverting your power plan after sleep using Powercfg, Group Policy, or Registry edits. Start with the command-line method and the scheduled task. If the problem continues, use Group Policy or Registry to lock the plan. As an advanced tip, use the powercfg /requests command to identify any driver or application that is preventing your chosen plan from staying active.