How to schedule it in Orchestrator?

We have 3 projects(Project A, Project B and Project C) to schedule in the orchestrator.
All projects will run on same machine and by same robot.
Project A and Project B need to run at every alternate hour. And Project C needs to run once in a day at 3:00.
For eg: Project | Time
Project A | 13:00
Project B | 14:00
Project A | 15:00
Project B | 16:00
Project C | 03:00

How to schedule it in Orchestrator?

@Mohsin_Inamdar

Goto Triger, Advance and Add cron

Project A :- 0 0 0,2,4,6,8,10,12,14,16,18,20,22 ? * * *
Project B :- 0 0 1,5,7,11,13,15,17,21,23 ? * * *
Project C :- 0 0 3 ? * * *

Thanks @Lakshay_Verma i will try it.
What if I want to run it in alternate minute instead of Hour

1 Like

@Mohsin_Inamdar You can create a cron from below website
.

Cron expression generator - Quartz

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