Cron Expression for Twice Daily on Weekdays
Run a task at 9 AM and 3 PM on weekdays
Cron Expression
0 9,15 * * 1-5
Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
0
At the start of the hour
Hours
9,15
At 9:00 and 15:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
1-5
From Monday to Friday
Summary
This schedule will run your task run a task at 9 am and 3 pm on weekdays.