Created
December 28, 2021 13:38
-
-
Save Kline-/3dbffcd4e03d061f9ebb3556a346c71b to your computer and use it in GitHub Desktop.
Prevent Windows screensaver and idle timer from activating.
This file contains 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
Set objShell = WScript.CreateObject("WScript.Shell") | |
Do While True | |
objShell.SendKeys("{SCROLLLOCK}") | |
WScript.Sleep(100) | |
objShell.SendKeys("{SCROLLLOCK}") | |
WScript.Sleep(24000) | |
Loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment