Created
December 29, 2020 19:44
-
-
Save thewh1teagle/4c72c3b72a7cbd4b98c183aa826fcc71 to your computer and use it in GitHub Desktop.
Turn off monitor immediately Windows 10
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 | |
| SET NORMAL_SEC=300 | |
| SET SLEEP_SEC=1 | |
| :: Get current power-scheme token | |
| FOR /F "tokens=4 delims= " %%A IN ('POWERCFG /GETACTIVESCHEME') DO ( | |
| SET SCHEMETOKEN=%%A | |
| ) | |
| powercfg /SETDCVALUEINDEX %SCHEMETOKEN% SUB_VIDEO VIDEOIDLE %SLEEP_SEC% | |
| powercfg /SETACVALUEINDEX %SCHEMETOKEN% SUB_VIDEO VIDEOIDLE %SLEEP_SEC% | |
| powercfg /S %SCHEMETOKEN% | |
| timeout /t 2 | |
| powercfg /SETDCVALUEINDEX %SCHEMETOKEN% SUB_VIDEO VIDEOIDLE %NORMAL_SEC% | |
| powercfg /SETACVALUEINDEX %SCHEMETOKEN% SUB_VIDEO VIDEOIDLE %NORMAL_SEC% | |
| powercfg /S %SCHEMETOKEN% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment