Quick fix: Open Terminal (Admin) and run powercfg -restoredefaultschemes. All custom power plans are deleted and the default plans (Balanced, Power Saver, High Performance, Ultimate Performance) are restored to factory state.
Your laptop’s battery life has dropped from 8 hours to 4. Or your desktop sleeps too aggressively. Or a third-party app — Razer Synapse, Asus Armoury Crate, an OEM tuning utility — added a custom power plan that overrides the defaults. You want clean defaults back without reinstalling Windows.
Affects: Windows 11 (and Windows 10).
Fix time: ~2 minutes.
What causes this
Windows ships with four default power plans, each defined by hundreds of underlying settings (CPU minimum/maximum percentage, USB suspend behavior, hard disk timeout, display brightness curve, etc.). When third-party software or you modify settings, those changes overwrite the plan’s defaults — and there’s no UI button to revert to factory state for a specific plan.
The powercfg -restoredefaultschemes command resets every power plan to its factory state in one go, deletes any custom plans, and re-creates the default ones cleanly. This is safer and faster than reinstalling Windows for power-plan corruption.
Method 1: Restore default schemes via powercfg (recommended)
The complete one-command reset. Works for any power plan corruption.
- Close any open apps that depend on a specific power state (video editors, games). Power plan switching happens immediately.
- Open Terminal (Admin): right-click Start → Terminal (Admin) → click Yes at the UAC prompt.
- Run:
powercfg -restoredefaultschemes - The command completes silently — no progress bar, no confirmation. It runs in under a second.
- List the power plans:
powercfg /listOutput shows the default plans (Balanced, Power Saver, High Performance) with their GUIDs. Any custom plans are gone.
- Open Settings → System → Power & battery. The Power mode dropdown should show the default options.
- For desktops: open Control Panel → Power Options for the full plan list including Ultimate Performance if available.
Within 30 seconds you have factory power-plan settings back.
Method 2: Reset only the currently active plan
For when you only want to reset one plan, not delete all of them.
- Open Control Panel → Power Options.
- Click Change plan settings next to your active plan.
- Click Restore default settings for this plan.
- Confirm Yes at the prompt.
- The plan’s top-level settings (turn off display, put computer to sleep) revert to default.
- For advanced settings: click Change advanced power settings → click Restore plan defaults at the bottom of the dialog. Click OK.
- This resets all sub-settings (CPU, USB, PCIe, multimedia, etc.) for the active plan only.
Use this when you’ve only modified one plan and want to preserve others.
Method 3: Enable Ultimate Performance plan for desktops
If you reset power plans because you wanted maximum performance and the High Performance plan isn’t fast enough. Ultimate Performance is hidden by default but unlockable.
- Open Terminal (Admin).
- Run:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61This duplicates the Ultimate Performance scheme.
- Open Control Panel → Power Options. Ultimate Performance now appears in the list.
- Click the radio button next to it to activate.
- This plan disables CPU throttling and minimum-power optimizations. It uses more power but eliminates micro-stuttering caused by frequency scaling.
- Recommended for: workstations, gaming PCs on AC power, servers. Not for laptops on battery — battery life drops dramatically.
The trade-off: higher power draw and heat. Use only on devices where power consumption isn’t a concern.
How to verify the fix worked
- Run
powercfg /list. Output should show only default plans (Balanced + Power Saver + High Performance for laptops; add Ultimate Performance if Method 3 applied). - Open Settings → System → Power & battery → Power mode. The dropdown shows the default modes.
- Check sleep timeout: Settings → System → Power & battery → Screen and sleep. Values should match the default (Battery: 5 min screen / 15 min sleep; AC: 10 min screen / 30 min sleep).
If none of these work
If powercfg -restoredefaultschemes fails with an “Access denied” or “Invalid parameter” error, the power configuration database (C:\Windows\System32\config\SYSTEM) may be corrupted. Run sfc /scannow from elevated Command Prompt to repair system files. If SFC reports unrepairable corruption, run DISM /Online /Cleanup-Image /RestoreHealth first, then SFC again. For laptops where the OEM (Lenovo, Dell, HP) ships a customized power-plan profile, restoring defaults removes the OEM-tuned settings — re-install the OEM’s power management driver (Lenovo Power Manager, Dell Power Manager) to restore them. If the OEM plan was the source of your problem, you can intentionally not reinstall it and rely on Windows’s standard defaults instead.
Bottom line: One powercfg command resets every power plan to factory defaults — no reinstall needed.