I am trying to set up a process to run on Orchestrator every 15 minutes, Monday-Friday between 07:30 - 15:30, but without success. Please help.
1 Like
Try the below from expression
*/15 7-16 * * 1-5
Go to advance setting in trigger
1 Like
@radoslav.spasov Welcome back to UiPath community you can try below expression
30,45 7-15 * * 1-5
-
30,45
: This specifies the minute field, meaning the task will run at 30 minutes and 45 minutes past each hour (e.g., 07:30, 07:45, 08:30, 08:45, …, 15:30). -
7-15
: This specifies the hour field, meaning the task will run every hour from 07:00 AM to 03:00 PM. -
*
: This means every day of the month. -
*
: This means every month. -
1-5
: This specifies Monday to Friday (where 1 is Monday and 5 is Friday)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.