Cron Trigger Every Workday Every Half an hour from 9:00 to 11:00

Hey I am trying to trigger my process every workday, every half an hour from 9:00 to 11:00.

I have tried this: */30 9-11 * * MON-FRI but it’s saying wrong syntax. Can you help me?

Thanks

hi @Fabi99v ,
Try this one. */30 9-11 * * 1,2,3,4,5

Still invalid

Try this then… 0 0/30 9-10 ? * 1,2,3,4,5
Will show like this, i also dont know why it target until 10.59. So if u prefer to run it until 11 o’clock, maybe u can try to change 10 to 11.

2 Likes

Thank you Luffy. It works:)

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