R
Ron Queloz
I've created a task which should run every 3rd of a month. The trigger is
<Triggers>
<CalendarTrigger>
<StartBoundary>2016-11-16T02:00:00</StartBoundary>
<Enabled>true</Enabled>
<ScheduleByMonth>
<DaysOfMonth>
<Day>3</Day>
</DaysOfMonth>
<Months>
<January />
<February />
<March />
<April />
<May />
<June />
<July />
<August />
<September />
<October />
<November />
<December />
</Months>
</ScheduleByMonth>
</CalendarTrigger>
</Triggers>
But the task did run on the 2nd of the current month (June):
What's wrong here?
Thanks, Ron.
Continue reading...
<Triggers>
<CalendarTrigger>
<StartBoundary>2016-11-16T02:00:00</StartBoundary>
<Enabled>true</Enabled>
<ScheduleByMonth>
<DaysOfMonth>
<Day>3</Day>
</DaysOfMonth>
<Months>
<January />
<February />
<March />
<April />
<May />
<June />
<July />
<August />
<September />
<October />
<November />
<December />
</Months>
</ScheduleByMonth>
</CalendarTrigger>
</Triggers>
But the task did run on the 2nd of the current month (June):
What's wrong here?
Thanks, Ron.
Continue reading...