Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<Schedule Name="">
    <Rule Type="Yearly">
        <Day>1</Date>Day>
   </Rule>
</Schedule>

Perform start of 4th month in every year (Example: 20XX-04-01)

...

Code Block
languagexml
<Schedule Name="">
    <Rule Type="Yearly">
        <Day>10</Date>Day>
        <Month>4</Month>
   </Rule>
</Schedule>

Annual Schedule

Perform by yearly basis. It basically excludes the date given and runs the scheduled task on every day except the given one.

Code Block
languagexml
<Schedule Name="">
    <Rule Type="Annual">
        <Date>2000-02-25T00:00:00.0000000+00:00</Date>
   </Rule>
</Schedule>

...