indiedev91
(Indie Dev 91)
September 26, 2022, 4:53am
1
Im learning uipath and orchestrator and came accros this issue
On a daily basis, I would like to run a bot at four different times such as 6:00am, 11:00am, 2:00pm, and 11:00pm
I created four different triggers for the same process and they all work perfectly
However, after some time, I came across this cron expression that can be passed in advance
Currently, I don’t know how to implement cron expressions, but I want to implement this as soon as possible after which I will learn how to do it
Sanjit_Pal
(Sanjit Pal)
September 26, 2022, 5:18am
2
Use the below expression to run the process every day at 4 specified period of time
0 0 6,11,14,23 ? * * *
Gokul001
(Gokul Balaji)
September 26, 2022, 5:50am
3
Hi @indiedev91
You can try with the below link for CRON
Go to → trigger → Click Plus → Select Advance → 0 0 6,11,14,23 ? * * *
Regards
Gokul
2 Likes
indiedev91
(Indie Dev 91)
September 26, 2022, 6:06am
4
tysm for this , helped me a lot
indiedev91
(Indie Dev 91)
September 26, 2022, 6:12am
5
hey thanks for the answer , actually i created this expression * 0 6,12,18,23 ? * * *
and tried to add in the advance but got this error “The cron expression is not allowed, as it would run more often than once per minute. (#1609 )”
Gokul001
(Gokul Balaji)
September 26, 2022, 6:17am
6
Hi @indiedev91
Try like this 0 0 6,11,14,23 ? * * *
Regards
Gokul
indiedev91
(Indie Dev 91)
September 26, 2022, 6:18am
7
thanks man its working now
indiedev91
(Indie Dev 91)
September 26, 2022, 7:08am
8
Hey actually I have a doubt about the triggers, let’s say 0 0 6,12,18,23 ? * * * in the same cron expression? In this case, if the machine shuts down at 6 am which means that we missed one trigger, what will happen when the system is started? Will the trigger initiate the pending process after the system has been started?
Gokul001
(Gokul Balaji)
September 26, 2022, 7:12am
9
The job run will be faulted as Robot machine disconnected from Orchestrator . @indiedev91 , It will not been in the pending status.
1 Like
system
(system)
Closed
September 29, 2022, 7:12am
10
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.