Noktomezo

Disable Power Throttling

Feb 1st, 2025
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Winbatch 2.64 KB | Source Code | 0 0
  1. :: ─────────────────────────────────────────────────────────────────────────────
  2. :: 💤 DISABLE POWER THROTTLING
  3. :: ─────────────────────────────────────────────────────────────────────────────
  4. :: 📖 Can unleash your CPU’s full potential, delivering peak performance for resource-intensive tasks
  5. :: ─────────────────────────────────────────────────────────────────────────────
  6. :: ⚠️ Can cause stutters on some laptops; also reduces battery life
  7. :: ─────────────────────────────────────────────────────────────────────────────
  8. :: ©️ Copy & Paste it to your own .cmd/.bat file
  9. :: ─────────────────────────────────────────────────────────────────────────────
  10.  
  11.  
  12.  
  13. :: 📜 SCRIPT
  14. :: ─────────────────────────────────────────────────────────────────────────────
  15.  
  16. reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" /v "PowerThrottlingOff" /t REG_DWORD /d "1" /f >nul 2>&1
  17.  
  18. :: ─────────────────────────────────────────────────────────────────────────────
  19.  
  20.  
  21.  
  22. :: 🔁 RESTORE DEFAULT VALUES
  23. :: ─────────────────────────────────────────────────────────────────────────────
  24.  
  25. reg delete "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" /v "PowerThrottlingOff" /f >nul 2>&1
  26.  
  27. :: ─────────────────────────────────────────────────────────────────────────────
Advertisement
Add Comment
Please, Sign In to add comment