Skip to content

Instantly share code, notes, and snippets.

@peter9811
Last active February 28, 2025 14:28
Show Gist options
  • Save peter9811/035a14b348d0469a1bd6bf1bff6bf086 to your computer and use it in GitHub Desktop.
Save peter9811/035a14b348d0469a1bd6bf1bff6bf086 to your computer and use it in GitHub Desktop.
Add High Performance power plan Windows 11
@echo off
:: Script to enable High Performance power plan
:: Works on Windows 10 and Windows 11
:: Run as Administrator
:: Set the High Performance power plan
powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
echo.
echo High Performance power plan has been enabled.
pause
@peter9811
Copy link
Author

Batch Script to Enable High Performance Power Plan

Description

This batch script is designed to enable the "High Performance" power plan on Windows 10 and Windows 11 by setting the power configuration to the High Performance GUID.

Usage Instructions

  1. Save the script with a .bat extension
  2. Right-click the file and select "Run as administrator"
  3. Wait for the process to complete

Important Notes

  • This script should be run as Administrator
  • Enabling the High Performance power plan can increase power consumption

Compatibility

  • Works on Windows 10
  • Works on Windows 11

@peter9811
Copy link
Author

Alternatively just:

Run CMD as Admin > powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment