How to Export and Import a Power Plan in Windows 11 / 10

July 5, 2023 updated by Admin Leave a reply »

Is there any way to backup power plans before reinstalling Windows 10? How can I apply a custom power plan on multiple PCs at once? In this tutorial we’ll show you an easy way to export a power plan to a .pow file, and then import the .pow file to restore the power plan on Windows 11 / 10.

How to Export and Import a Power Plan in Windows 11 / 10

  1. Before getting started, you need to open an elevated Command Prompt, Windows PowerShell or Windows Terminal. Run the powercfg -list command to display all the power plans available in your system. Each power plan has its own unique GUID.

  2. Execute the following command to export a power plan to the file d:\demo\Balanced.pow. The Your_GUID needs to be replaced with the actual GUID of the power plan you want to export.

    powercfg -export d:\demo\Balanced.pow Your_GUID

  3. Open File Explorer and browse to the location where your .pow file is stored. It’s actually a binary registry file which saves all your power scheme settings such as display, sleep, etc. You can transfer this file to other Windows PCs for restoring your power plan.

  4. To import a power plan, simple type the following command and hit Enter. Replace d:\demo\Balanced.pow with the location where your .pow file is saved.

    powercfg -import d:\demo\Balanced.pow

  5. Once you complete the above step, open Control Panel and go to Power Options, your imported power plan should appear and you can set it as active.

That’s it!