Cron Expression to start Bot at 12:00 AM CST daily and then run hourly

Hi Everyone ,

I want my Robot to start my process at 12:00 AM CST daily and then run hourly i.e. basically bot should run hourly but start time is 12:00 AM CST. Can you please let us know what is the Cron Expression for this.

Thanks

Hi @bharathkumar.yerra,

UiPath orchestrator advanced triggers have no control over time zones as you requested. CST should be configured in your Orchestrator Time Zone. You can change this in your settings page.
image

0 start at 0 seconds
0 start at 0 minute
0-23 repeat between 00:00:00 23:59:59 hours
? no specific day (every day of the month)
* any month
* any day of the week
* any year

Cron Expression : 0 0 0-23 ? * * *

Good to know

UiPath uses Quartz implementation of Cron expressions and is a little limited when compared to cron expressions in Linux.

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