Cron Expression for Monday and Friday at Noon
Run a task on Monday and Friday at 12:00 PM
Cron Expression
0 12 * * 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
12
At 12:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
1,5
On Monday and Friday
Summary
This schedule will run your task run a task on monday and friday at 12:00 pm.