/
/

How to Restore Missing Power Plans in Windows 11

by Miguelito Balba, IT Editorial Expert
How to Restore Missing Power Plans in Windows 11 blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

Key Points

  • Power plans may not appear in the UI because of issues in configuration, the system hiding them, or they’re existing but not currently set as visible due to policy or OEM overrides.
  • To restore missing power plans in Windows 11, you can:
    • Recreate missing default Windows power plans using PowerCfg.
    • Enable hidden or specialized plans, including Ultimate Performance.
    • Repair power subsystem corruption.
    • Reset power configuration to the default state.
    • Check group policy, registry, and OEM utilities for hidden plans.
    • Rebuild missing power options in the Control Panel.
    • Validate and finalize.
  • Issues You May Encounter During Power Plan Restorations:
    • Plans disappear after reboot.
    • Ultimate Performance is not showing.
    • Existing plans cannot be applied.
    • Advanced settings are missing inside plans.
    • All methods failed.

There are many reasons why Windows 11 may unexpectedly hide power plans. This can result in several significant system issues, such as unpredictable performance or excessive battery drain. To avoid these disruptions, you may want to reinstate power plan features to help with system tuning, ensuring performance consistency, or optimizing battery usage.

In this guide, we will run through the steps to help you restore missing power plans in Windows 11. This should help IT teams, MSPs, and individual users properly configure their power plan settings across desktops, laptops, workstations, and enterprise-managed environments.

At a glance

TaskPurpose and value
Task 1: Recreate missing default Windows power plans using PowerCfgUseful when built-in plans have been deleted, replaced, or corrupted.
Task 2: Enable hidden or specialized plans, including Ultimate PerformanceEnables plans that are hidden by OEM customization or low-power hardware configurations.
Task 3: Repair power subsystem corruptionChecks if there is corruption in the power subsystem that prevents power plans from appearing in the UI.
Task 4: Reset power configuration to the default stateResets the entire power subsystem and returns Windows to factory default power schemes.
Task 5: Check group policy, registry, and OEM utilities for hidden plansPrevents OEM-modified system configurations from repeatedly hiding or overriding power plans.
Task 6: Rebuild missing power options in the Control PanelMakes power plans appear if they are hidden in the UI due to visibility flags.
Task 7: Validate and finalizeConfirms if power plan settings are active and persistent after a reboot.

Prerequisites

Before proceeding with the steps, check first that you have the following:

  • Administrative access: Ensure you’re using a Windows 11 system with administrator rights.
  • Command-line access: You should also have Command Prompt or PowerShell access.
  • Awareness of device class: You should know which type of device classes you’re going to manage, whether it’s a desktop, laptop, or workstation.
  • Group Policy or MDM profiles: This is required for MSPs and IT teams that are managing a fleet of Windows 11 devices.
  • Optional: OEM documentation for model-specific plans.

Task 1: Recreate missing default Windows power plans using PowerCfg

If default power plans have been deleted or are missing from the UI, you can recreate them by duplicating Windows’ built-in power scheme templates using PowerCfg. Here are the steps:

  1. Open Command Prompt (Run as administrator).
  2. Recreate each default Windows 11 plan using its GUID:
    • Balanced:

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

    • High performance:

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

    • Power saver:

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

  1. Open Control Panel > Power Options and check whether all plans reappear.
  2. Set a plan as active if needed: powercfg -setactive <GUID>

Task 2: Enable hidden or specialized plans, including Ultimate Performance

IT operators may find that Windows hides advanced power plans due to OEM customization, policy enforcement, or low-power hardware configurations. In some cases, the plan exists on the system but is hidden from the Power Options UI. In other cases, the plan does not exist and must be recreated.

  1. To identify whether a power plan is hidden, list all power plans (including hidden ones) by running: powercfg /list
  2. If the plan appears in the list but does not show in the UI, it is hidden. To unhide an existing plan, remove its hidden attribute:

powercfg -attributes <POWER_PLAN_GUID> -ATTRIB_HIDE

  1. If the Ultimate Performance plan does not appear in the list, it must be recreated. To create a visible duplicate of the Ultimate Performance plan (supported only on Pro for Workstations or certain hardware), run:

powercfg -attributes <POWER_PLAN_GUID> -ATTRIB_HIDE
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

  1. For OEM-specific plans, check manufacturer documentation and reimport their GUIDs or .pow files if available.
  2. Refresh Power Options to confirm they appear in the UI.

Task 3: Repair power subsystem corruption

Default or advanced plans may still not appear even after doing Tasks 1 and 2. In this case, you should look into any power subsystem corruption that prevents Windows from recreating plans correctly. Here’s how:

  1. Run System File Checker: sfc /scannow
  2. Run DISM to repair component corruption:

dism /online /cleanup-image /restorehealth

  1. Restart the device.
  2. Re-run Task 1 to attempt plan restoration again.

Task 4: Reset power configuration to the default state

If individual system fixes still don’t work, your next option is to reset the entire power subsystem. This returns Windows to factory default power schemes. Here’s how:

  1. Open Command Prompt (administrator).
  2. Execute: powercfg -restoredefaultschemes

⚠️ NOTE: If you previously exported a custom plan using powercfg -export, or have access to the same plan on another system, you can re-import it later using powercfg -import.

  1. Reopen Power Options to ensure the default plans are restored.

Task 5: Check group policy, registry, and OEM utilities for hidden plans

In managed or OEM-modified systems, policies can repeatedly hide or override available power plans. Look into the policies that do these:

  1. Open Group Policy Editor and navigate to:
    Computer Configuration > Administrative Templates > System > Power Management
  2. Review policies that commonly hide or restrict power plans, including:
    • “Specify a custom active power plan”
    • “Hide sleep settings”
    • “Turn off hybrid sleep”
    • Any plan-display or restriction policies
  3. Open the registry and navigate to:

HKLM\SYSTEM\CurrentControlSet\Control\Power\User\PowerSchemes

  1. Some OEM power management utilities intentionally replace or hide Windows power plans to enforce vendor-optimized profiles. Examples of these are:
    • Lenovo Vantage
    • Dell Power Manager
    • HP Power Manager
    • In most cases, these tools are beneficial and tuned for the specific hardware. However, if power plans continue to disappear, cannot be applied, or revert after reboot, these utilities may be enforcing their own configurations and should be reviewed.
  2. Restore default plans again if required.

Task 6: Rebuild missing power options in the Control Panel

You may also not see power plans in the UI due to visibility flags. Common categories affected are:

  • Hard disk
  • Sleep
  • Display
  • Battery settings

To unhide them, reset commonly hidden categories using powercfg:

  1. Open Command Prompt (Run as administrator).
  2. Run the following commands to unhide common power setting categories:

powercfg -attributes SUB_DISK -ATTRIB_HIDE
powercfg -attributes SUB_SLEEP -ATTRIB_HIDE
powercfg -attributes SUB_VIDEO -ATTRIB_HIDE
powercfg -attributes SUB_BATTERY -ATTRIB_HIDE

  1. Open Control Panel Power Options > Change plan settings > Change advanced power settings.
  2. Confirm that the previously missing categories now appear.

Task 7: Validate and finalize

Confirm that the power plans you want are active and will still show even after a reboot. Here’s how:

  • Verify all expected plans exist by running: powercfg /list
  • Set the plan you want as active.
  • Restart the device and verify that plans persist after reboot.
  • For managed environments, document power plan GUIDs and define desired baselines.

Troubleshooting

You might encounter some hiccups when restoring mission power plans in Windows 11. Here are some of the most common issues and their potential solutions.

IssuesSolutions
Plans disappear after reboot.A GPO or OEM utility is enforcing a specific plan. Remove or adjust the policy.
Ultimate Performance does not show.The plan may be hidden by default or unsupported by the device or Windows edition. Try enabling it manually using powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61. If it still does not appear, the hardware or SKU may not support it.
Plans appear, but cannot be applied.The active plan is overridden by MDM. Review assigned policies.
Advanced settings are missing inside plans.Attributes may be hidden. Run batch visibility resets in Method 6.
All methods fail.Run powercfg /restoredefaultschemes and repair system files again.

Reinstating power plan configurations

Power plans may not be active because of several factors. Sometimes, they exist but are just hidden by the system policies. However, these configurations may cause problems with system tuning, performance consistency, or battery optimization. The good thing is that there are straightforward ways to revert or restore missing power plans in Windows 11.

Key Takeaways

  • Use powercfg to recreate balanced, power saver, and high performance.
  • Enable advanced or OEM plans, including ultimate performance.
  • Check for system corruption if plans fail to appear after duplication, as they may be hidden rather than damaged.
  • Reset the subsystem if default plans or settings are heavily damaged.
  • Check policy and OEM tools to prevent plans from disappearing again.

Related topics:

FAQs

Yes. Missing plans like High Performance or Ultimate Performance can reduce CPU boost behavior, causing lower frame rates or inconsistent performance during gameplay.

Large feature updates sometimes reset power configuration files or introduce new policies that hide existing plans. Restoring them with PowerCfg usually resolves the issue.

Yes, but not directly. Microsoft’s built-in power plans cannot be deleted or removed. However, OEMs or optimization apps can enforce their own presets by creating and activating them to replace the built-in ones.

Yes. You can run powercfg -export <file.pow> <GUID> to back up your existing plan before restoring or resetting configurations.

No. Power plans are stored locally on each Windows installation and do not sync across devices or profiles.

Yes. Use powercfg scripting or GPO to set the active plan and monitor drift.

You might also like

Ready to simplify the hardest parts of IT?