...
Code Block |
---|
|
<Schedule Name="">
<Rule Type="Daily">
<Start>16:01:00</Start>
<End>16:01:59</End>
<Invert>True</Invert>
</Rule>
</Schedule> |
Yearly Schedule
Perform every 1th day in all months (20XX-XX-01)
Code Block |
---|
|
<Schedule Name="">
<Rule Type="Yearly">
<Day>1</Date>
</Rule>
</Schedule> |
Perform start of 4th month in every year (20XX-04-01)
Code Block |
---|
|
<Schedule Name="">
<Rule Type="Yearly">
<Month>4</Month>
</Rule>
</Schedule> |
Perform at 4th month and 10th day in every year (20XX-04-10)
Code Block |
---|
|
<Schedule Name="">
<Rule Type="Yearly">
<Day>10</Date>
<Month>4</Month>
</Rule>
</Schedule> |
Annual Schedule
Perform by yearly basis
...