Hey everyone,
I need a cron expression where it will run on mon,tues,wednes,thurs,friday (so it wont run on weekends), it will run between 9am to 6pm. every 3 hours.
So it will run on 9:00,12:00,15:00,18:00 on weekdays.
Hey everyone,
I need a cron expression where it will run on mon,tues,wednes,thurs,friday (so it wont run on weekends), it will run between 9am to 6pm. every 3 hours.
So it will run on 9:00,12:00,15:00,18:00 on weekdays.
Please find the Cron Expression below:
0 0 9-18/3 ? * MON-FRI *
(OR)
0 0 9-18/3 ? * MON,TUE,WED,THU,FRI *
MON-FRI can be used too
thanks
thank you as well
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.