Cron Expression for Last Weekday of Quarter
Run a task on the last weekday of each quarter
Cron Expression
0 0 L 3,6,9,12 1-5Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
0At the start of the hour
Hours
0At midnight
Day of Month
LAt L
Month
3,6,9,12At 3, 6, 9 and 12
Day of Week
1-5From Monday to Friday
Summary
This schedule will run your task run a task on the last weekday of each quarter.