Cron every weekday
Expression: 0 9 * * 1-5
Meaning
Run at 09:00 Monday through Friday.
Example use
Good for workday reports, team reminders and business-hour automations.
How to modify it
Change 9 to another hour to move the weekday run time.
Use it in the cron parser
Open the Cron Parser, paste 0 9 * * 1-5,
and review the next run times in your browser before using the schedule in production.
Related cron schedules
- Cron every day at 9 AM —
0 9 * * * - Cron every Monday —
0 0 * * 1 - Cron every hour —
0 * * * *
FAQ
Does cron use my local time zone?
Cron uses the time zone configured in the scheduler or server. Cloud platforms, CI systems and containers may default to UTC.
Is this a five-field or six-field cron?
This page uses standard five-field crontab syntax: minute, hour, day of month, month and day of week.