AvailableTriggers Enumeration

Trigger types that can be made available to UI elements.

Definition

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.11.0
[FlagsAttribute]
[DefaultValueAttribute(AvailableTriggers.Time)]
public enum AvailableTriggers

Members

Event1Triggers the task when a specific event occurs. Version 1.2 only.
Time2Triggers the task at a specific time of day.
Daily4Triggers the task on a daily schedule.
Weekly8Triggers the task on a weekly schedule.
Monthly16Triggers the task on a monthly schedule.
MonthlyDOW32Triggers the task on a monthly day-of-week schedule.
Idle64Triggers the task when the computer goes into an idle state.
Registration128Triggers the task when the task is registered. Version 1.2 only.
Boot256Triggers the task when the computer boots.
Logon512Triggers the task when a specific user logs on.
SessionStateChange2,048Triggers the task when a specific user session state changes. Version 1.2 only.
Custom4,096Triggers the custom trigger. Version 1.3 only.
AllTriggers7,167All triggers are available.

See Also