Logic Machine Forum
Scheduled time parameters - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8)
+--- Thread: Scheduled time parameters (/showthread.php?tid=1688)



Scheduled time parameters - Kai-Roger - 02.11.2018

Hi.

Where and what should i write in the attatched picture to make the script run every 1 hour all the time?

I sort of made it run every whole and half hour by writing this:

Minute: */30
Hour: *
Day of month: *

   


RE: Scheduled time parameters - Daniel - 02.11.2018

Just put 1 in a minute and rest * then script will run every hour when minute 1 happen.


RE: Scheduled time parameters - Kai-Roger - 02.11.2018

(02.11.2018, 10:56)Daniel. Wrote: Just put 1 in a minute and rest * then script will run every hour when minute 1 happen.

So if i put in like this, then it will run every 2 hours?:

Minute: 1
Hour: */2
Day of month: *


RE: Scheduled time parameters - Daniel - 02.11.2018

If you want every second hour then you can just put * in minute too and for hour as you did. But yes it will run every second hour on the first minute of an hour.


RE: Scheduled time parameters - Kai-Roger - 02.11.2018

(02.11.2018, 11:18)Daniel. Wrote: If you want every second hour then you can just put * in minute too and for hour as you did. But yes it will run every second hour on the first minute of an hour.

Thanks Smile