Skip to content

Instantly share code, notes, and snippets.

@thewh1teagle
Created December 29, 2020 19:44
Show Gist options
  • Select an option

  • Save thewh1teagle/4c72c3b72a7cbd4b98c183aa826fcc71 to your computer and use it in GitHub Desktop.

Select an option

Save thewh1teagle/4c72c3b72a7cbd4b98c183aa826fcc71 to your computer and use it in GitHub Desktop.
Turn off monitor immediately Windows 10
@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