S st!ff Member Dec 20, 2010 #1 How to schedule a *.iss script? For example I want to run CheckOrders.iss every 10 minutes.
B bob_the_builder Well-Known Member Dec 20, 2010 #2 Code: function main() { while 1 { run CheckOrders wait 36000 } } I think 36000 is 10 minutes. But put that code in a ISS file and run it.
Code: function main() { while 1 { run CheckOrders wait 36000 } } I think 36000 is 10 minutes. But put that code in a ISS file and run it.