This parameter decides when the EventHandler is
executed. The format is "cron" style and is specified as follows:
<month> <day> <weekday> <hour> <minute>
The fields have numeric values:
Month = 0 - 11 (January .. December)
Day = 1 - 31
Weekday = 1 - 7 (Sunday .. Saturday)
Hour = 0 - 23
Minute = 0 - 59
Fields are separated by white space. Enter "*" to specify any value.
You may specify multiple values for any field, separated by commas, but
the values should be in ascending order. When the current time matches
all the fields in the schedule, the specified AssemblyLine is run.
Samples:
* * 5 22 0 - Run every Thursday at 22:00 hours
* 3 * 22 0 - Run every 3rd of each month at 22:00 hours Note: The month field has
values from 0 to 11, while day and weekday values begin at 1. Note: A
common source of confusion is specifying both a day
and a weekday. Both attributes must match, meaning that this event will
not occur often.
|