Curated cron expression

Hourly During Business Hours 9–17: 0 9-17 * * 1-5

0 9-17 * * 1-5 — every hour on the hour during office hours weekdays.

Meaning at a glance

0 9-17 * * 1-5

Hourly weekdays between 09:00 and 17:00

At :00 of hours 9 through 17, Monday–Friday.

Next-run example: Tuesday 10:30, next runs are 11:00, 12:00, …, 17:00.

How 0 9-17 * * 1-5 works

Hour range 9-17 inclusive with weekday filter.

Nine runs per weekday between 9 AM and 5 PM.

Preview next runs and platform conversions in CronWizard before deploying to production.

Field breakdown for 0 9-17 * * 1-5
FieldValueMeaning
Minute0Configured as 0
Hour9-17Configured as 9-17
Day of month*Every value
Month*Every value
Day of week1-5Configured as 1-5

Good use cases

  • Business-hour sync
  • Office dashboards
  • B2B notifications

Timezone and daylight-saving behavior

Must match office timezone.

Named timezone preserves 9–17 local window.

The expression does not contain a timezone. The scheduler supplies that context. Use the next-run preview above in the same IANA timezone as production, then confirm the target platform's own timezone rules.

Platform compatibility and converted expressions

The source expression is five-field Unix cron. Use the exact equivalent below rather than adding or removing fields by sight.

Platform compatibility for 0 9-17 * * 1-5
PlatformStatusExpressionWhat to know
Unix crontabReady0 9-17 * * 1-5Use directly in a normal five-field user crontab.
Kubernetes CronJobReady0 9-17 * * 1-5Use as spec.schedule; set spec.timeZone when local wall-clock behavior matters.
GitHub ActionsReady0 9-17 * * 1-5Use under on.schedule; UTC is the default and an IANA timezone may be specified.
Vercel Cron JobsPlan / behavior limit0 9-17 * * 1-5The expression is valid, but Vercel always uses UTC and Hobby schedules run at most once per day.
AWS EventBridge SchedulerConvertcron(0 9-17 ? * 1-5 *)Convert to AWS minute-first cron(...), add the required year, and use ? in one day field.
Spring @ScheduledConvert0 0 9-17 * * 1-5Use Spring’s six fields by prepending seconds and set zone explicitly when needed.
systemd timerConvert0 9-17 * * 1-5Use OnCalendar syntax and validate it with systemd-analyze calendar on the target host.

Edge cases to check before deployment

  • 17:00 included; not 18:00.
  • Holidays still run.

Frequently asked questions

What does the cron expression 0 9-17 * * 1-5 mean?

0 9-17 * * 1-5 means “hourly weekdays between 09:00 and 17:00.” At :00 of hours 9 through 17, Monday–Friday.

What are the next run times for 0 9-17 * * 1-5?

Tuesday 10:30, next runs are 11:00, 12:00, …, 17:00. Exact timestamps depend on the scheduler timezone and the current time.

What timezone does 0 9-17 * * 1-5 use?

Must match office timezone.

Can I use 0 9-17 * * 1-5 on every scheduling platform?

No. It is a five-field Unix expression. Some platforms accept it directly, while AWS EventBridge Scheduler, Spring, and systemd require the converted form shown in the compatibility table.