Created
June 30, 2019 07:26
-
-
Save blomer/d64b09a37140018ee9c637d777ce4328 to your computer and use it in GitHub Desktop.
Virtually removes micro-stutter from games.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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