Create Custom Power Plan in Windows 10  

Page 1 of 3 123 LastLast
    Create Custom Power Plan in Windows 10

    Create Custom Power Plan in Windows 10

    How to Create a Custom Power Plan in Windows 10
    Published by Category: Performance & Maintenance
    20 Jun 2020
    Designer Media Ltd

    How to Create a Custom Power Plan in Windows 10


    A power plan is a collection of hardware and system settings that manages how computers use and conserve power. A power plan is also known as a power scheme. You can create custom power plans that are optimized for specific computers.

    By default, Windows 10 includes three built-in power plans: Balanced, Power Saver, and High Performance. You can customize these existing plans for your systems, create new plans that are based on the existing plans, or create a new power plan from scratch.

    This tutorial will show you how to create a new custom power plan that can be used by all users on the Windows 10 PC.

    If your computer supports Modern Standby, you will only have the Balanced power plan available by default.



    Contents

    • Option One: To Create Custom Power Plan in Power Options
    • Option Two: To Create Custom Power Plan in Command Prompt






    OPTION ONE

    To Create Custom Power Plan in Power Options


    1 Do step 2, step 3, or step 4 below for how you would like to open Power Options.

    2 Right click or press and hold on the Power icon in the notification area, click/tap on Power options, and go to step 5 below. (see screenshot below)

    Create Custom Power Plan in Windows 10-power_icon-2.jpg

    3 Open the Control Panel (icons view), click/tap on the Power Options icon, and go to step 5 below.

    4 Open the Win+X Quick Link menu, click/tap on Power Options, click/tap on the Additional power settings link, and go to step 5 below.

    5 Click/tap on the Create a power plan link on the left side. (see screenshot below)

    Create Custom Power Plan in Windows 10-create_power_plan-1.png

    6 Select (dot) an existing power plan to base the new custom plan on, type in a plan name you want, and click/tap on Next. (see screenshot below)

    Create Custom Power Plan in Windows 10-create_power_plan-2.png

    7 Click/tap on Create. (see screenshot below)

    Create Custom Power Plan in Windows 10-create_power_plan-3.png

    8 Your new custom power plan is now your current active plan. Click/tap on Change plan settings to make any changes you want to the new custom power plan. (see screenshot below)

    Create Custom Power Plan in Windows 10-create_power_plan-4.png






    OPTION TWO

    To Create Custom Power Plan in Command Prompt


    1 Open a command prompt.

    2 Copy and paste the powercfg /list command into the command prompt, and press Enter. This will give you a list of all existing power plans on the PC along with their GUID. Make note of the GUID of the power plan (ex: high performance) you want to base the new custom plan on. (see screenshot below)

    Create Custom Power Plan in Windows 10-create_power_plan_command-1.png

    3 Type the command below into the command prompt, and press Enter to create a new custom power plan. (see screenshot below)

    powercfg -duplicatescheme GUID

    Substitute GUID in the command above with the actual GUID you chose from step 2 above.

    For example: powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

    Create Custom Power Plan in Windows 10-create_power_plan_command-2.png

    4 Make note of the given GUID (ex: 48569655-ebee-4428-b456-512f207cddc2) for the new custom power plan. (see screenshot above)

    5 Type the command below into the command prompt, and press Enter to rename the custom power plan to what you want. (see screenshot below)

    powercfg -changename GUID "name"

    Substitute GUID in the command above with the actual GUID given for the custom power plan in step 4 above.

    Substitute name in the command above with the name you want for the custom power plan.

    For example: powercfg -changename 48569655-ebee-4428-b456-512f207cddc2 "My Custom Plan 1"

    Create Custom Power Plan in Windows 10-create_power_plan_command-3.png

    6 Type the command below into the command prompt, and press Enter to make this new custom power plan your active plan. (see screenshot below)

    powercfg -setactive GUID

    Substitute GUID in the command above with the actual GUID given for the custom power plan in step 4 above.

    For example: powercfg -setactive 48569655-ebee-4428-b456-512f207cddc2

    Create Custom Power Plan in Windows 10-create_power_plan_command-4.png

    7 When finished, you can close the command prompt if you like.

    8 You can now change the settings of the custom power plan to what you want.


    That's it,
    Shawn






  1. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1

    Something just came to mind for users that want or need to overclock for specific programs, but don't need all that horsepower all the time.

    Create a power plan like Balanced, but instead of 5%min and 100%max, they can set it to 5%min and 85 or 95%max, depending how high they are overclocked.
    That way they won't have to switch between OC profiles in their BIOS/UEFI, and they conserve electricity for daily use, and keep their systems a tad cooler too.
      My Computers


  2. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #2

    I just tried creating a custom power plan to run my 4.9GHz OC at 4.5GHz max.
    It doesn't work

    I tested with CPU-Z and set the min & max to 92%, which should run a little more than 4.5GHz,
    but the custom plan stays at 4.0GHz(BIOS default for the 6700K).

    It seems making changes in percentage to the max freq in all plans uses the default CPU freq and downclocks.

    In my case instead of 4.5GHz, no matter the plan, 92% gives only 3.6GHz

    Am I missing something?

    Or am I stuck using my OC Profiles in UEFI/BIOS, if I want to set the OC to run a slower.

    Note: Balanced runs as it should, between 0.800 and 4.9, it's just changing the max freq in power plan that screws everything up
    Last edited by Cliff S; 04 Apr 2017 at 03:31.
      My Computers


  3. Posts : 1
    Windows 10 Pro
       #3

    Hi,

    I use for more than a year now a script that I have created, to set and edit a power plan in 2 clicks.

    This one aims to deactivate all Sleeps, and disable turn off or going to sleep with hardware buttons.

    Code:
    powercfg -SETACTIVE 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP STANDBYIDLE 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP STANDBYIDLE 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP HIBERNATEIDLE 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP HIBERNATEIDLE 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP HYBRIDSLEEP 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP HYBRIDSLEEP 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_DISK DISKIDLE 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_DISK DISKIDLE 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS LIDACTION 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS LIDACTION 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS PBUTTONACTION 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS PBUTTONACTION 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS SBUTTONACTION 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS SBUTTONACTION 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS UIBUTTON_ACTION 2
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_BUTTONS UIBUTTON_ACTION 2
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP RTCWAKE 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_SLEEP RTCWAKE 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_PCIEXPRESS ASPM 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_PCIEXPRESS ASPM 0
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_VIDEO VIDEOIDLE 900
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_VIDEO VIDEOIDLE 900
    powercfg -SETACVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_VIDEO 17aaa29b-8b43-4b94-aafe-35f64daaf1ee 0
    powercfg -SETDCVALUEINDEX 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c SUB_VIDEO 17aaa29b-8b43-4b94-aafe-35f64daaf1ee 0
    powercfg -h off
    If it can help anyone, I'm glad :)

    I read a lot of good things on this forum, I wanted to give something back, as small as it is.

    Thanks :)
      My Computer


  4. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #4

    Create Custom Power Plan in Windows 10-image.png

    Huh?
    With the creators update, we can choose our max Freq?

    That's funny that it shows up after I made the above post about the percent's not working right.
      My Computers


  5. Posts : 68,881
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #5

    Interesting. Mine were set to 0.

    It would be better if it was for GHz instead of MHz though.
      My Computers


  6. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #6

    Brink said:
    Interesting. Mine were set to 0.

    It would be better if it was for GHz instead of MHz though.
    Mine was at 0 too, maybe that is just for default of what is in BIOS, until you change it.
    But I did try setting mine to 4700(my daily OC is 4900) and ran Disk Cleanup, Update cleanup and the whole shebang, which always maxes my CPU for a short burst, and it went no higher than 4.7GHz.
    I need to try it benchmarking to really test it> my project for the weekend I guess.
      My Computers


  7. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #7

    A quick check using Aida64
    Create Custom Power Plan in Windows 10-image-001.png

    Create Custom Power Plan in Windows 10-image-002.png
      My Computers


  8. Posts : 68,881
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #8

    Interesting that your max didn't change for 4400, but only current.
      My Computers


  9. Posts : 27,181
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #9

    Brink said:
    Interesting that your max didn't change for 4400, but only current.
    Min, ma,x and average are what was, not what is.
    If I had cleared the stability test after "down clocking" it would have read 4400.
      My Computers


 

Tutorial Categories

Create Custom Power Plan in Windows 10 Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 22:20.
Find Us




Windows 10 Forums