Cron Expression for Weekends at 10 AM
Run a task Saturday and Sunday at 10:00 AM
Cron Expression
0 10 * * 0,6Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
0At the start of the hour
Hours
10At 10:00
Day of Month
*Any value
Month
*Any value
Day of Week
0,6On Sunday and Saturday
Summary
This schedule will run your task run a task saturday and sunday at 10:00 am.