How to Add Triggers with Cron expression

Hi. I want to add a trigger on orchestrator like that

Start 13.00
Start 15.00
Start 17.00

How can I do that ?

Hi
While setting schedule under trigger
we got an option called ADVANCED
image

where we can mention the cron expression like this three different

0 0 13 ? * * *

0 0 15 ? * * *

0 0 17 ? * * *

or together

0 0 13,15,17 ? * * *

At second :00, at minute :00, at 13pm, 15pm and 17pm, of every day

Cheers @sufyant

1 Like

if I want to add all the time in a single trigger, is it enough to write it?

0 0 13,15,17 ? * * *

yah that would trigger like
At second :00, at minute :00, at 13pm, 15pm and 17pm, of every day

Cheers @sufyant

1 Like

so 13.00,15.00,17.00 right ?

1 Like

yah it should be mentioned like this

0 0 13,15,17 ? * * *

where first 0 is for seconds, second zero is for minutes and 13,15,17 mentions the hours in 24 hr format and ? is day of month

Cheerss @sufyant

1 Like

Thank you buddy

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.