Skip to content
cronhelp.me
Preset

Cron expression for every Friday at 5 PM

0 17 * * 5
Cron expression5-field
At 05:00 PM, only on Friday
Lint
OKNo issues found — this expression is well-formed.
Next runs
#
1
2
3
4
5
6
7
Copy as

What it does

The cron expression 0 17 * * 5 runs a job every Friday at 5 PM — in plain terms, at 05:00 PM, only on Friday. Every field not shown as a restriction stays *, meaning "no limit", so the schedule repeats on that pattern indefinitely.

Paste it into the tool below to see the next seven runs in both the schedule's time zone and yours, a field-by-field breakdown, and any lint warnings. Times are computed for the schedule zone (UTC by default); switch either column if your server or your own zone differs.

Standard 5-field cron drives most schedulers — Linux crontab, Kubernetes CronJobs, GitHub Actions, and others — though details like time-zone handling and step support vary. The lint checks below flag the portability and correctness traps that apply to this pattern.

Related presets

FAQ

What does 0 17 * * 5 mean?
At 05:00 PM, only on Friday. It runs every Friday at 5 PM.
Is 0 17 * * 5 standard cron?
Yes — it uses only the standard 5-field syntax (minute, hour, day-of-month, month, day-of-week), so it works in mainstream schedulers. Check the lint output below for any dialect-specific caveats.
How do I see the next runs in my time zone?
The tool below shows a "Your time" column detected from your browser alongside the schedule time zone, so you can confirm exactly when it fires for you.