Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📊 DISABLE GPU DYNAMIC P-STATES
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📖 Forces the GPU to run at the highest available frequencies
- :: ─────────────────────────────────────────────────────────────────────────────
- :: ⚠️ For NVIDIA graphics card owners only
- :: ⚠️ RESTART IS REQUIRED
- :: ─────────────────────────────────────────────────────────────────────────────
- :: ©️ Copy & Paste it to your own .cmd/.bat file
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📜 SCRIPT
- :: ─────────────────────────────────────────────────────────────────────────────
- for /f %%i in ('reg query "HKLM\System\ControlSet001\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}" /t REG_SZ /s /e /f "NVIDIA" ^| findstr "HKEY"') do (
- reg add "%%i" /v "DisableDynamicPstate" /t REG_DWORD /d "1" /f
- )
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 🔁 RESTORE DEFAULT VALUES
- :: ─────────────────────────────────────────────────────────────────────────────
- for /f %%i in ('reg query "HKLM\System\ControlSet001\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}" /t REG_SZ /s /e /f "NVIDIA" ^| findstr "HKEY"') do (
- reg delete "%%i" /v "DisableDynamicPstate" /f
- )
- :: ─────────────────────────────────────────────────────────────────────────────
Advertisement
Add Comment
Please, Sign In to add comment