We need to create time trigger and it is required cron expression for advanced schedule.
How to write Cron Expression to run the bot for every 1 hour except Saturday & Sunday?
We need to create time trigger and it is required cron expression for advanced schedule.
How to write Cron Expression to run the bot for every 1 hour except Saturday & Sunday?
To create a Cron Expression that runs a bot every hour except on Saturday and Sunday, you can use the following format:
Updated
0 0 * ? * MON,TUE,WED,THU,FRI *
Explanation:
Every hour, only on Monday, Tuesday, Wednesday, Thursday, and Friday
Thanks,
Ashok
It would look something like this:
0 * * * 1-5
or
0 0 * ? * MON-FRI *
Happy Automation!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.