Need some support to create a trriger

i need to create a trigger that runs every 2 minutes and stop after 2 hours. the wait 2 hours and start aging for two hours. and keep repeating this sequence until 8PM every day.
is that can be done

Just set up multiple triggers, one for each time it should start, and set each trigger to stop after 2 hours.

Feel free to explore cron e.g. with an online tool:

see also

  • 18,19 is pausing time, then we reached 8pm, so after 6pm, no schedules will be active

Hi @mohamed.saty2012

Setup a trigger like this for your process using CRON. This will start your job every 2 min & will stop after 2 hrs. Setup multiple trigger like this till 8PM.

Cron Expression- 0 */2 * * * ?

Hope this helps :slight_smile:

@mohamed.saty2012,

In single trigger this could be done.

Create multiple triggers with 2 minutes frequency and 2 hours duration.
For example your bot should start from let’s say 12 PM

For 12 PM to 2 PM
Trigger1: 0 0/2 12-13 ? * * *
Every 2 minutes, between 12:00 PM and 01:59 PM

3 PM to 4 PM Off

For 4 PM to 6 PM
Trigger2: 0 0/2 16-17 ? * * *
Every 2 minutes, between 04:00 PM and 05:59 PM

Continue further trigger…

Hope this is helpful.

Thanks,
Ashok :slight_smile:

is this can be done throw the UiPath community account

@mohamed.saty2012,

Yes, absolutely. It’s core functionality of Orchestrator available in all license type.

Thanks,
Ashok :slight_smile:

Thanks, Brother, for your support.

1 Like

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