awake.vbs script

Set WshShell = WScript.Createobject(“WScript.Shell”)
do while a < 54
a = a + 1
WScript.Sleep 595000
WshShell.SendKeys “{F15}”
Wscript.Echo (54-a)*10 & ” Mins left”
Loop

–Infinite version

Set WshShell = WScript.Createobject(“WScript.Shell”)
do while a < 9999999999999999999999999999999999999999
a = a + 1
WScript.Sleep 595000
WshShell.SendKeys “{F15}”
Loop