Skip to content

Instantly share code, notes, and snippets.

@mshock
Created May 31, 2016 22:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mshock/52994719e117f763a8068a7b32e6ec33 to your computer and use it in GitHub Desktop.
Save mshock/52994719e117f763a8068a7b32e6ec33 to your computer and use it in GitHub Desktop.
AutoHotkey script to keep Windows from sleeping
SetTimer,KeepAwake,480000 ;run every 8 minutes
return
KeepAwake:
{
MouseMove,0,0,0,R ; mouse pointer stays in place but sends a mouse event
}
return
^0::
Send, Keep-Alive is running
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment