
This section describes the Task Scheduler union.
typedef union _TRIGGER_TYPE_UNION {
DAILY Daily;
WEEKLY Weekly;
MONTHLYDATE MonthlyDate;
MONTHLYDOW MonthlyDOW;
} TRIGGER_TYPE_UNION;
Defines the task trigger's invocation schedule. This union is part of the TASK_TRIGGER structure.
- Daily
- Structure that specifies the number of days between invocation of a task. This member is a DAILY structure.
- Weekly
- Structure that specifies the number of weeks between invocations of a task, and day(s) of the week the task will run. This member is a WEEKLY structure.
- MonthlyDate
- Structure that specifies the month(s) and day(s) of the month a task will run. This member is a MONTHLYDATE structure.
- MonthlyDOW
- Structure that specifies the day(s) of the year a task runs by month(s), week of month, and day(s) of week. This member is a MONTHLYDOW structure.
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.