How to run a process two times a day i.e at 9 am morning and 6pm evening also process should not run on weekends i.e sunday

Hello friends
How to run a process two times a day i.e at 9 am morning and 6pm evening, also process should not run on weekends i.e sunday.

Thanks in advance

Hi @aslam_ali1

  1. Schedule the Process: Log in to UiPath Orchestrator and follow these steps:a. From the main menu, navigate to “Automations” > “Process”. b. Click on the process you want to schedule. c. In the process details page, click on the “Triggers” tab. d. Click on the “Add” button to create a new trigger.
    2.Configure the Triggers:In the trigger configuration, you will set up two separate triggers, one for 9 AM and another for 6 PM, to run from Monday to Saturday.For each trigger: a. Choose the start date and time (9 AM or 6 PM) as appropriate. b. Choose the “Daily” option for the recurrence. c. Set the “Every” field to 1, indicating that it should run every day. d. In the “Repeat” field, enter 1, indicating that the trigger should repeat every 1 days. e. In the “End” field, choose “No end date.”
  2. Exclude Sundays: To exclude Sundays from the schedule, you’ll need to set up a custom cron expression for the triggers.a. Click on the “Advanced” option for the trigger. b. Choose the “Cron Expression” option. c. Use the following expression for both triggers:

Copy code

0 0 9 ? * 2-7

This expression will schedule the trigger to run at 9 AM from Monday to Saturday (days 2-7)

1 Like

Go to orchestrator—tenant----setting----non working days
then create a calender with some name in which days the process need to run
then go to triggers

and then go to triggers and give that calender name

Hope this helps

Thank you @Praveen_Mudhiraj

1 Like

Thank you @Usha_Jyothi for your quick response

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