Skip to content

Instantly share code, notes, and snippets.

@blomer
Created June 30, 2019 07:26
Show Gist options
  • Select an option

  • Save blomer/d64b09a37140018ee9c637d777ce4328 to your computer and use it in GitHub Desktop.

Select an option

Save blomer/d64b09a37140018ee9c637d777ce4328 to your computer and use it in GitHub Desktop.
Virtually removes micro-stutter from games.
@echo off
goto check_Permissions
:check_Permissions
net session >nul 2>&1
if %errorLevel% == 0 (
echo 1 sec bro
bcdedit /set disabledynamictick yes
echo You can now close this window.
) else (
echo You must run this batch file as administrator.
)
pause >nul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment