Orchestrator Schedule - help

Hello Everyone,

We have recently developed a process and scheduled to run from Orchestrator. Requirement is to run the Bot every 30 mins between 14:00 to 18:00 from Monday to Friday.

Below is the Cron expression which I have updated in the schedule

0 0/30 14-18 ? * 2-6

Here bot is triggering correctly for every half an hour from 14:00 to 18:00 but the problem is there is one extra run as well at 18:30.

Did any one came across this issue with the Orchestrator, if yes can you please help in resolving this and provide the correct Cron Expression for the requirement mentioned above.
attached screenshot for reference.

Thanks

Your cron is going from 14:00 to 18:59. to should be 14:00 - 18:00.
I would advise using a web like http://www.cronmaker.com/
You can check your result there in the List next scheduled dates section

1 Like

but is that possible to do?

Thanks,

I tried in the Cronmaker with multiple options but not able to get the exact cron expression.

0 0/30 14-18 ? * 2-6
0 /30 14-18 ? * 2-6

Above both cron is running 18:30 also which Ideally don’t want.

If any one can help in providing the cron expression to run every 30 mins between two hours(eg: 14:00 to 18:00) that would be great.

Can you use two schedules?
0 0/30 14-17 ? * 2-6 - This would run until 17:30
The other one exactly at 18?

i think is the only way in uipath…

yeah…Probably that is the only option.Thanks for your suggestion.