Checking at fixed times
I would like to add a rule for checking a task 2 times a day. For example 00:15 and 12:15.
I have tried to do this by creating a rule checking every 900s, and defining Not to check 00:00-00:15;00:30-12:15;12:30-23:59
Maybe does exist a cleaner way ?
I have tried to do this by creating a rule checking every 900s, and defining Not to check 00:00-00:15;00:30-12:15;12:30-23:59
Maybe does exist a cleaner way ?
This discussion has been closed.
Comments
Two times a day is 12 hours or every 43200 seconds. This means that you need to create the rule just before 12.15 (or have it started then)
Maybe there is a way for modifying the last execution ? Where is recorded this data, in the rdd files ?
Actually you can do much simpler than that:
1/ create a batch file with following in it
net stop serverscheck
net start serverscheck
2/ Schedule it via the Windows scheduler to run once at 12.15.
It is not a neat solution. I passed your suggestion on to our development team and they told me that one option would be to have a start time (start this check at X:XX). The every 12 hours is covered by putting in the 43200 seconds.
Thanks.