Helping to activate ( High performance Power Plan & Maximum performance Power Plan)


Persona78

Member
Local time
9:39 AM
Posts
8
OS
Windows 11 Pro for Workstations
Hi!
I build this litle bacth to helping to activate High performance Power Plan & Maximum performance Power Plan since is not avaible on Windows 11.
I hope it helps you.


Code:
@echo off
title Performance Power Plans

:: BatchGotAdmin
:-------------------------------------
:: Check for permissions
    IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)

:: If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    goto UACPrompt
) else ( powershell.exe "Set-ExecutionPolicy Unrestricted -force" >nul & goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params= %*
    echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /b
  
:gotAdmin
cls
@echo. & @echo   [32mSelect Power Plan.[0m & @echo.
@echo  [90mNote: The [31mUltimate Performance power plan[0m[90m is not available on all systems,
@echo  as it requires certain hardware capabilities, such as a high-end CPU and cooling solution.[0m & @echo.
Set /p choice="- Set [31mUltimate[0m or [33mHigh[0m performance power plan? "

if %choice% EQU Ultimate goto Ultimate
if %choice% EQU High goto High
goto gotAdmin

:High
@echo.
@echo  [33mSetting High performance Power Plan.[0m
@echo  [33mIt improves performance but may use more energy.[0m
powercfg -duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c >power.txt
for /f "tokens=4 delims=: " %%a  in ('type "power.txt"') do powercfg -s %%a
del /f /s /q "power.txt" >nul
goto exit

:Ultimate
@echo.
@echo  [31mSetting Maximum performance Power Plan.[0m
@echo  [31mProvides maximum performance on high-end PCs[0m
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61 >power.txt
for /f "tokens=4 delims=: " %%a  in ('type "power.txt"') do powercfg -s %%a
del /f /s /q "power.txt" >nul

:exit
@echo. & @echo  [32m Done! [90mPress any key to exit.[0m
pause >nul
exit


Save as batch and execute it!


Enjoy it!
 

Attachments

  • Captura de ecrã 2025-04-05 124227.webp
    Captura de ecrã 2025-04-05 124227.webp
    65.4 KB · Views: 1
  • Captura de ecrã 2025-04-05 124142.webp
    Captura de ecrã 2025-04-05 124142.webp
    24.6 KB · Views: 1

My Computer

System One

  • OS
    Windows 11 Pro for Workstations
    Computer type
    Laptop
    Manufacturer/Model
    Acer
    CPU
    13th Gen Intel(R) Core(TM) i7-1355U 1.70 GHz
    Memory
    16GB
    Graphics Card(s)
    Intel(R) Iris(R) Xe Graphics
    Sound Card
    Realtek Audio
    Monitor(s) Displays
    Monitor PnP Genérico
    Hard Drives
    KINGSTON_OM8SEP4512Q-AA
    Internet Speed
    1000MBps
I have Ultimate Power plan on my Windows 11 machine just by using the usual command line in (admin) PowerShell:
Code:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61


Ultimate Power Plan in CP.webp

Kind regards,

tecknot
 

My Computer

System One

  • OS
    Dual boot Windows 10 Pro 22H2 (b 19045.5608) & Windows 11 Pro 23H2 (b 22631.5039)
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkPad Workstation P72
    CPU
    Intel i7 8750H @ 2.2 GHz
    Motherboard
    Lenovo 01YU291
    Memory
    16 GB (all Samsung) DDR4-3200 SODIMM (non-ECC) PCIe 3
    Graphics Card(s)
    Intel UHD Graphics 630 & NVIDIA Quadro P600
    Sound Card
    Realtek ALC3286
    Monitor(s) Displays
    17.3"
    Screen Resolution
    3840x2160
    Hard Drives
    1TB SSD Samsung 860 EVO SATA 3
    1TB SSD Samsung 970 EVO M.2 NVMe PCIe 3 x 4
    2TB SSD Samsung 990 PRO M.2 NVMe PCIe 3 x 4
    PSU
    230W
    Cooling
    fan
    Keyboard
    UltraNav
    Mouse
    Kensington wireless Orbit
    Internet Speed
    640Mbps
    Browser
    Firefox
    Antivirus
    Defender
    Other Info
    CM246 Chipset
@Brink Thanks for the link, Shawn.

Kind regards,

tecknot
 

My Computer

System One

  • OS
    Dual boot Windows 10 Pro 22H2 (b 19045.5608) & Windows 11 Pro 23H2 (b 22631.5039)
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkPad Workstation P72
    CPU
    Intel i7 8750H @ 2.2 GHz
    Motherboard
    Lenovo 01YU291
    Memory
    16 GB (all Samsung) DDR4-3200 SODIMM (non-ECC) PCIe 3
    Graphics Card(s)
    Intel UHD Graphics 630 & NVIDIA Quadro P600
    Sound Card
    Realtek ALC3286
    Monitor(s) Displays
    17.3"
    Screen Resolution
    3840x2160
    Hard Drives
    1TB SSD Samsung 860 EVO SATA 3
    1TB SSD Samsung 970 EVO M.2 NVMe PCIe 3 x 4
    2TB SSD Samsung 990 PRO M.2 NVMe PCIe 3 x 4
    PSU
    230W
    Cooling
    fan
    Keyboard
    UltraNav
    Mouse
    Kensington wireless Orbit
    Internet Speed
    640Mbps
    Browser
    Firefox
    Antivirus
    Defender
    Other Info
    CM246 Chipset
I have Ultimate Power plan on my Windows 11 machine just by using the usual command line in (admin) PowerShell:
Code:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61


View attachment 130412

Kind regards,

tecknot
Hi!
On my OS doesn't worked!
I need the both commands or will not will not apply...
Will notnsyow on power plans.
 

My Computer

System One

  • OS
    Windows 11 Pro for Workstations
    Computer type
    Laptop
    Manufacturer/Model
    Acer
    CPU
    13th Gen Intel(R) Core(TM) i7-1355U 1.70 GHz
    Memory
    16GB
    Graphics Card(s)
    Intel(R) Iris(R) Xe Graphics
    Sound Card
    Realtek Audio
    Monitor(s) Displays
    Monitor PnP Genérico
    Hard Drives
    KINGSTON_OM8SEP4512Q-AA
    Internet Speed
    1000MBps

Latest Support Threads

Back
Top Bottom