it:ad:quartz.net:howto:set_the_chron_schedule

IT:AD:Quartz.NET:HowTo:Set the Chron Schedule

  • Format is: s m h dayOfMonth Month dayOfWeek optionalYear
  • You'll need to use at least 6 of the 7 sub-expressions.
  • sub-expression are separated with white-space (not commas as IT:AD:Jenkins).
  • lists can be separated using commas (with no spaces before or after comma:
    • 0 0 12 ? * MON-WEB,SAT
  • wildcard (*) is used for 'every':
    • 0 0 12 ? * MON-WEB,SAT
  • '?' character is used to say 'whatever' when trigger is covered by another value. For example, the following '' for day of month already states that it will be every day, so you can mark it as ?. * 0 0 12 ? * MON-WEB,SAT L can be used for Last Day of Week or Month day to mean Last day of month/week. For example, last day of Month:
    • 0 0 12 L 0 ? (or last day of week)
    • 0 0 12 ? 0 L (or last day of week)

Valid Examples are:

//Reminder -- format is:



//Every Wed, at Noon:
0 0 12 ? * WED

//Every Mon, Tues, Wed, Sat, at Noon:
0 0 12 ? * MON-WEB,SAT

//Every 5 minutes, 10 seconds after the minute:
"10 0/5 * * * ?"

  • /home/skysigal/public_html/data/pages/it/ad/quartz.net/howto/set_the_chron_schedule.txt
  • Last modified: 2023/11/04 01:54
  • by 127.0.0.1