Orchestrator Schedules: cron expressions

Dear community

I’m trying to schedule a job starting:

  1. mon-sat
  2. between 7am and 6pm
  3. every uneven 5 minutes, meaning 1,6,11,16, etc, minute in an hour

What would be the cron expression? tried with
1,6,11,[…], 7-18 * * *
it says “invalid trigger format”.

many thanks for your help

1 Like

Got it, quite simple…

  • 1,6,11,16,21,26,31,36,41,46,51,56 7-17 ? * 2-6
    note that there is at least ONE “?” required…

you can find anything you need here:
http://www.quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/crontrigger.html

Unfortunately, once more, I’m missing this piece of documentation in the UiPath documentation (or any hint at all would be helpful :wink: )

2 Likes