manetho 0 Posted July 13, 2010 I'm new to scripts so can someone tell me how to make a script that checks if a program is running and if not start that program and repeat this like every 5 minutes? Share this post Link to post Share on other sites
DicatoroftheUSA 38 Posted July 13, 2010 (edited) Look at the help file under the subject of process management. Put what you need in a while loop with the sleep function. Edited July 13, 2010 by DicatoroftheUSA Statism is violence, Taxation is theft.Autoit Wiki Share this post Link to post Share on other sites
sleepydvdr 8 Posted July 13, 2010 This should do it: $i = 0 Do If ProcessExists("Process.exe") Then Sleep(30000) Else Run("c:\Program Files\A Program\Process.exe") EndIf Until $i = 1 #include <ByteMe.au3> Share this post Link to post Share on other sites