PDA

View Full Version : [Fixed] Scheduler problems


Gruff
11-24-2003, 02:52 PM
Hey
I need help to get my scheduler to work.
I have those:
NewDay = 0 0 * * TCL ..\scripts\newdate.itcl
static = 57 23 * * TCL ..\scripts\static.itcl all
static = 58 23 * * TCL ..\scripts\static.itcl atopdn 5
static = 59 23 * * TCL ..\scripts\static.itcl dtopup 5

Problem is. I live in timezone GMT +01
And everything is outputed at 01.00 i wanna have it outputed at 2300.
:confused:

Mouton
11-24-2003, 03:40 PM
change all those static task names... task names should be different for all tasks.
static1, static2, static3 for example.

then, if u want tasks to run 2h earlier than they do atm, just do 23-2 = 21

59 21 * * ...

Gruff
11-24-2003, 03:59 PM
okay. thx.
I try that.