Created
November 9, 2021 18:29
-
-
Save mattantonelli/717f9c08a029020e694b12dfd0aaa3b2 to your computer and use it in GitHub Desktop.
Powershell keepalive
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
| $wsh = New-Object -ComObject WScript.Shell | |
| while (1) { | |
| $wsh.SendKeys('+{F15}') | |
| Start-Sleep -seconds 300 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment