Cron Expression for End of Business Day
Run a task at 5:30 PM on weekdays
Cron Expression
30 17 * * 1-5
Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
30
At 30
Hours
17
At 17: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 5:30 pm on weekdays.