Cron Expression for Every 1 hour ( Except Sat &Sun)

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?

@Sathish_Kumar_S,

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 :slight_smile:

Have a look here:

0 0 0/1 ? * MON-FRI *

Feel free to play

hi @Sathish_Kumar_S

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.