Orchestrator Scheduling Robot

Hi All,

How can I make the [robot] run every 15 minutes but only between 09:00-20:00.
And Only between Working Day 4 to Working Day 7 of every Month

Thanks

1 Like

@gopihemanth

Welcome back to our uipath community.

Here, you need to use CRON expression to schedule BOT.

3 Likes

hi @gopihemanth
i hope @lakshman provide you the way of answer
and if your looking it for robot level basis
refer the agent desktop having it facility

1 Like

To elaborate

Every 15 minutes, between 09:00 AM and 08:59 PM, between day 4 and 7 of the month.

0 */15 9-20 4-7 * *

Every 15 minutes, between 09:00 AM and 08:59 PM, Monday through Friday

0 */15 9-20 ? * MON-FRI

While the below should be a valid cron expression in most cron schedulers I have used. Quartz.Net Framework that UiPath is using doesn’t seem to accept it as a valid expression.

0 */15 9-20 4-7 * MON-FRI *
1 Like