!This program cannot be run in DOS mode.
`.rsrc
@.reloc
Y_b`
_c_X
Y_bh*
lSystem.Resources.ResourceReader, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089#System.Resources.RuntimeResourceSet
PADPADP,
vq96lR{|FJh
R#a!;^
~o>C~S
m-!{@=w
.b=-+r
oVTyem
1!s$4l
1c~i!W
wF%b`^pf
bIh>GV
ok>'ql
$w_IXy
@E#gPI
->GOwa
io3'"t%
;el+e
//,%)1y
C#Gy=T
@RvP`[0
q0$BdTn
@$V2+{^
%`Y6O~
-a(T9]ld
+ft_{-Tz
rPZc*4
mABw$
IJ/h'9
p7R;l_
OjRG{-\QX
VfyR\mamf
S^417]
[X;e37X
\R2$d}
I5XOpc9
2o\Zd
9i+?lB-
s'SQu-KR/
.=n<x2Vr
3Y6j>M
2s5irs
Vy0#<t
'\2JvD:c
w8'hpk
g8!6@#+
d-@JaZ
!,/bUi70
wL)!&d
[Ug,2?
/>`.k8
)9*/ _?
)~aM[=
r:<|pZ
ybtwh
?4N|Cp,
-AyM&}
M$%EX!
'C_X6r
Ta}T[]h5
zl%uo=
xaxdH
L}|y%E
gD@!;d
*pkffx
wMtU'#
GgfQZP
w?CG0A
'zTfN.
/Q"z7#
4Wl$@r
QU^Wxo
wI"z'#
FT?j#4
flng8&Y
;;urE4
VtYUUld{2-
r`-CF2iF
'F78VM
2~;eSC
#M%]kp
]xa<1m
+WD#,c
UEtV0g
NDx+rB
o*r4dU
UD/XI"
>oPGG&
hR!gnv
;](^/^
BZ:3/*y
<Yj+F'
m\>;UG|$%
fgPzqC
fG6G'"i
o4;}2y
wq=~mm
7HR(/rA
w?sd^D
%D.)?^
Br?d`6)\X
P@AJ8U
LRv*Z%
9g}nNek
_D~E%<X]
3r#B8vl#
lL97n;z
uoD{5-s
"~OV|7(
YM.pAl
pR[aMj
lSystem.Resources.ResourceReader, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089#System.Resources.RuntimeResourceSet
PADPADP
Call a COM object
Start a program
Send an e-mail
Display a message
every day
{1} {0}
{0} {1}
every month
Multiple actions defined
Multiple triggers defined
Author
Disabled
Queued
Running
Unknown
any user
At system startup
At {0:t} every day
At {0:t} every {1} days
indefinitely
for a duration of {0}
Trigger expires at {0:G}.
Custom event filter
On event - Log: {0}
, Source: {0}
, EventID: {0}
When computer is idle
At log on of {0}
*At {0:t} on day {1} of {2}, starting {0:d}
2At {0:t} on the {1} {2:f} each {3}, starting {0:d}
$When the task is created or modified
& After triggered, repeat every {0}{1}.
On local connection to {0}.
On local disconnect from {0}.
On remote connection to {0}.
On remote disconnect from {0}.
On workstation lock of {0}.
On workstation unlock of {0}.
user session of {0}
At {0:t} on {0:d}
At startup
On an event
On idle
At log on
Monthly
Monthly
At task creation/modification
On state change
One time
Weekly
0At {0:t} every {1} of every week, starting {0:d}
5At {0:t} every {1} of every {2} weeks, starting {0:d}
fourth
second
thirdx8
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="TaskSchedulerV1Schema"
targetNamespace="http://schemas.microsoft.com/windows/2004/02/mit/task"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"
xmlns:td="http://schemas.microsoft.com/windows/2004/02/mit/task"
elementFormDefault="qualified">
<xs:element name="Task" type="taskType">
<xs:key name="PrincipalKey">
<xs:selector xpath="td:Principals/td:Principal" />
<xs:field xpath="@id" />
</xs:key>
<!-- Principal id in Context attribute should match an id of some principal in Principals section. -->
<xs:keyref name="ContextKeyRef" refer="PrincipalKey">
<xs:selector xpath="td:Actions" />
<xs:field xpath="@Context" />
</xs:keyref>
<!-- All ids must be unique -->
<xs:unique name="UniqueId">
<xs:selector xpath="td:Principals/td:Principal|td:Triggers/td:BootTrigger|td:Triggers/td:IdleTrigger|td:Triggers/td:TimeTrigger|td:Triggers/td:LogonTrigger|td:Triggers/td:CalendarTrigger|td:Actions/td:Exec" />
<xs:field xpath="@id" />
</xs:unique>
</xs:element>
<xs:simpleType name="nonEmptyString">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="pathType">
<xs:restriction base="nonEmptyString">
<xs:maxLength value="260"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="versionType">
<xs:restriction base="xs:string">
<xs:pattern value="\d+(\.\d+){1,3}" />
</xs:restriction>
</xs:simpleType>
<!-- Task -->
<xs:complexType name="taskType">
<xs:all>
<xs:element name="RegistrationInfo" type="registrationInfoType" minOccurs="0" />
<xs:element name="Triggers" type="triggersType" minOccurs="0" />
<xs:element name="Settings" type="settingsType" minOccurs="0" />
<xs:element name="Data" type="dataType" minOccurs="0" />
<xs:element name="Principals" type="principalsType" minOccurs="0" />
<xs:element name="Actions" type="actionsType" />
</xs:all>
<xs:attribute name="version" use="optional" fixed="1.1" type="versionType" />
</xs:complexType>
<!-- RegistrationInfo -->
<xs:complexType name="registrationInfoType">
<xs:all>
<xs:element name="Author" type="xs:string" minOccurs="0" />
<xs:element name="Description" type="xs:string" minOccurs="0" />
<xs:element name="Documentation" type="xs:string" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- Triggers -->
<xs:complexType name="triggersType">
<xs:group ref="triggerGroup" minOccurs="0" maxOccurs="48"/>
</xs:complexType>
<xs:group name="triggerGroup">
<xs:choice>
<xs:element name="BootTrigger" type="bootTriggerType" minOccurs="0" />
<xs:element name="IdleTrigger" type="idleTriggerType" minOccurs="0" />
<xs:element name="TimeTrigger" type="timeTriggerType" minOccurs="0" />
<xs:element name="LogonTrigger" type="logonTriggerType" minOccurs="0" />
<xs:element name="CalendarTrigger" type="calendarTriggerType" minOccurs="0" />
</xs:choice>
</xs:group>
<!-- Base type for all triggers -->
<xs:complexType name="triggerBaseType" abstract="true">
<xs:sequence>
<xs:element name="Enabled" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="StartBoundary" type="xs:dateTime" minOccurs="0" />
<xs:element name="EndBoundary" type="xs:dateTime" minOccurs="0" />
<xs:element name="Repetition" type="repetitionType" minOccurs="0" />
</xs:sequence>
</xs:complexType>
<!-- Repetition -->
<xs:complexType name="repetitionType">
<xs:all>
<xs:element name="Interval">
<xs:simpleType>
<xs:restriction base="xs:duration">
<xs:minInclusive value="PT1M"/>
<xs:maxInclusive value="P31D"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Duration" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:duration">
<xs:minInclusive value="PT1M"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="StopAtDurationEnd" type="xs:boolean" default="false" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- BootTrigger -->
<xs:complexType name="bootTriggerType">
<xs:complexContent>
<xs:extension base="triggerBaseType" />
</xs:complexContent>
</xs:complexType>
<!-- IdleTrigger -->
<xs:complexType name="idleTriggerType">
<xs:complexContent>
<xs:extension base="triggerBaseType" />
</xs:complexContent>
</xs:complexType>
<!-- TimeTrigger -->
<xs:complexType name="timeTriggerType">
<xs:complexContent>
<xs:extension base="triggerBaseType" />
</xs:complexContent>
</xs:complexType>
<!-- LogonTrigger -->
<xs:complexType name="logonTriggerType">
<xs:complexContent>
<xs:extension base="triggerBaseType" />
</xs:complexContent>
</xs:complexType>
<!-- CalendarTrigger -->
<xs:complexType name="calendarTriggerType">
<xs:complexContent>
<xs:extension base="triggerBaseType">
<xs:sequence>
<xs:choice>
<xs:element name="ScheduleByDay" type="dailyScheduleType" />
<xs:element name="ScheduleByWeek" type="weeklyScheduleType" />
<xs:element name="ScheduleByMonth" type="monthlyScheduleType" />
<xs:element name="ScheduleByMonthDayOfWeek" type="monthlyDayOfWeekScheduleType" />
</xs:choice>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!-- DailySchedule -->
<xs:complexType name="dailyScheduleType">
<xs:all>
<xs:element name="DaysInterval" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:unsignedInt">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="365"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:all>
</xs:complexType>
<!-- WeeklySchedule -->
<xs:complexType name="weeklyScheduleType">
<xs:all>
<xs:element name="WeeksInterval" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:unsignedByte">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="52"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DaysOfWeek" type="daysOfWeekType" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- MonthlySchedule -->
<xs:complexType name="monthlyScheduleType">
<xs:all>
<xs:element name="DaysOfMonth" type="daysOfMonthType" minOccurs="0" />
<xs:element name="Months" type="monthsType" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- MonthlyDayOfWeekSchedule -->
<xs:complexType name="monthlyDayOfWeekScheduleType">
<xs:all>
<xs:element name="Weeks" type="weeksType" minOccurs="0" />
<xs:element name="DaysOfWeek" type="daysOfWeekType" />
<xs:element name="Months" type="monthsType" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- DaysOfWeek -->
<xs:complexType name="daysOfWeekType">
<xs:all>
<xs:element name="Monday" fixed="" minOccurs="0" />
<xs:element name="Tuesday" fixed="" minOccurs="0" />
<xs:element name="Wednesday" fixed="" minOccurs="0" />
<xs:element name="Thursday" fixed="" minOccurs="0" />
<xs:element name="Friday" fixed="" minOccurs="0" />
<xs:element name="Saturday" fixed="" minOccurs="0" />
<xs:element name="Sunday" fixed="" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- Months -->
<xs:complexType name="monthsType">
<xs:all>
<xs:element name="January" fixed="" minOccurs="0" />
<xs:element name="February" fixed="" minOccurs="0" />
<xs:element name="March" fixed="" minOccurs="0" />
<xs:element name="April" fixed="" minOccurs="0" />
<xs:element name="May" fixed="" minOccurs="0" />
<xs:element name="June" fixed="" minOccurs="0" />
<xs:element name="July" fixed="" minOccurs="0" />
<xs:element name="August" fixed="" minOccurs="0" />
<xs:element name="September" fixed="" minOccurs="0" />
<xs:element name="October" fixed="" minOccurs="0" />
<xs:element name="November" fixed="" minOccurs="0" />
<xs:element name="December" fixed="" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- DaysOfMonth -->
<xs:complexType name="daysOfMonthType">
<xs:sequence>
<xs:element name="Day" type="dayOfMonthType" minOccurs="0" maxOccurs="32" />
</xs:sequence>
</xs:complexType>
<xs:simpleType name="dayOfMonthType">
<xs:restriction base="xs:string">
<xs:pattern value="[1-9]|[1-2][0-9]|3[0-1]|Last" />
</xs:restriction>
</xs:simpleType>
<!-- Weeks -->
<xs:complexType name="weeksType">
<xs:sequence>
<xs:element name="Week" type="weekType" minOccurs="0" maxOccurs="5" />
</xs:sequence>
</xs:complexType>
<xs:simpleType name="weekType">
<xs:restriction base="xs:string">
<xs:pattern value="[1-4]|Last" />
</xs:restriction>
</xs:simpleType>
<!-- Settings -->
<xs:complexType name="settingsType">
<xs:all>
<xs:element name="DisallowStartIfOnBatteries" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="StopIfGoingOnBatteries" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="RunOnlyIfNetworkAvailable" type="xs:boolean" default="false" minOccurs="0" />
<xs:element name="WakeToRun" type="xs:boolean" default="false" minOccurs="0" />
<xs:element name="Enabled" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="Hidden" type="xs:boolean" default="false" minOccurs="0" />
<xs:element name="DeleteExpiredTaskAfter" type="xs:duration" default="PT0S" minOccurs="0" />
<xs:element name="IdleSettings" type="idleSettingsType" minOccurs="0" />
<xs:element name="ExecutionTimeLimit" type="xs:duration" default="PT72H" minOccurs="0" />
<xs:element name="Priority" type="priorityType" default="7" minOccurs="0" />
<xs:element name="RunOnlyIfIdle" type="xs:boolean" default="false" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- Lower number means higher priority. -->
<xs:simpleType name="priorityType">
<xs:restriction base="xs:byte">
<xs:minInclusive value="0" fixed="true" />
<xs:maxInclusive value="10" fixed="true" />
</xs:restriction>
</xs:simpleType>
<!-- IdleSettings -->
<xs:complexType name="idleSettingsType">
<xs:all>
<xs:element name="Duration" default="PT10M" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:duration">
<xs:minInclusive value="PT1M"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="WaitTimeout" default="PT1H" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:duration">
<xs:minInclusive value="PT1M"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="StopOnIdleEnd" type="xs:boolean" default="true" minOccurs="0" />
<xs:element name="RestartOnIdle" type="xs:boolean" default="false" minOccurs="0" />
</xs:all>
</xs:complexType>
<!-- Data -->
<xs:complexType name="dataType">
<xs:sequence>
<xs:any />
</xs:sequence>
</xs:complexType>
<!-- Principals -->
<xs:complexType name="principalsType">
<xs:sequence>
<xs:element name="Principal" type="principalType" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
<!-- Principal -->
<xs:complexType name="principalType">
<xs:all>
<xs:element name="UserId" type="nonEmptyString" minOccurs="0" />
<xs:element name="LogonType" type="logonType" minOccurs="0" maxOccurs="1"/>
</xs:all>
</xs:complexType>
<xs:simpleType name="logonType">
<xs:restriction base="xs:string">
<xs:enumeration value="Password" />
<xs:enumeration value="InteractiveToken" />
<xs:enumeration value="InteractiveTokenOrPassword" />
</xs:restriction>
</xs:simpleType>
<!-- Actions -->
<xs:complexType name="actionsType">
<xs:sequence>
<xs:group ref="actionGroup" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
<xs:group name="actionGroup">
<xs:choice>
<xs:element name="Exec" type="execType" />
</xs:choice>
</xs:group>
<!-- Base type for actions. -->
<xs:complexType name="actionBaseType" abstract="true">
</xs:complexType>
<!-- Exec -->
<xs:complexType name="execType">
<xs:complexContent>
<xs:extension base="actionBaseType">
<xs:all>
<xs:element name="Command" type="pathType"/>
<xs:element name="Arguments" type="xs:string" minOccurs="0"/>
<xs:element name="WorkingDirectory" type="pathType" minOccurs="0"/>
</xs:all>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>4
-34*+<J?
v4.0.30319
#Strings
SetThreadExecutionState
GetWindowThreadProcessId
FindWindowEx
SRRemoveRestorePoint
PostMessageW
RtlSetProcessIsCritical
GetKernelObjectSecurity
SetKernelObjectSecurity
GetCurrentProcess
LogonUser
CloseHandle
taskshostw
CBDD243C3D
AAAC4BDB2A
2CAC3111AC
C34AA22233
CABA32CDB3
CCC24DA414
A434AC2A21
2444B2DA1A
2A4D34DCCB
CC1D411C3D
BB331AA1D3
BAA32C2DAD
value__
ComHandler
Execute
SendEmail
ShowMessage
iAction
unboundValues
v1Task
v2Coll
LOGON32_LOGON_INTERACTIVE
LOGON32_PROVIDER_DEFAULT
impersonationContext
identity
unboundDict
myMessage
resourceMan
resourceCulture
Create
CreateOrUpdate
Disable
DontAddPrincipalAce
IgnoreRegistrationTriggers
Update
ValidateOnly
Parallel
IgnoreNew
StopExisting
Password
InteractiveToken
ServiceAccount
InteractiveTokenOrPassword
SeCreateTokenPrivilege
SeAssignPrimaryTokenPrivilege
SeLockMemoryPrivilege
SeIncreaseQuotaPrivilege
SeUnsolicitedInputPrivilege
SeMachineAccountPrivilege
SeTcbPrivilege
SeSecurityPrivilege
SeTakeOwnershipPrivilege
SeLoadDriverPrivilege
SeSystemProfilePrivilege
SeSystemtimePrivilege
SeProfileSingleProcessPrivilege
SeIncreaseBasePriorityPrivilege
SeCreatePagefilePrivilege
SeCreatePermanentPrivilege
SeBackupPrivilege
SeRestorePrivilege
SeShutdownPrivilege
SeDebugPrivilege
SeAuditPrivilege
SeSystemEnvironmentPrivilege
SeChangeNotifyPrivilege
SeRemoteShutdownPrivilege
SeUndockPrivilege
SeSyncAgentPrivilege
SeEnableDelegationPrivilege
SeManageVolumePrivilege
SeImpersonatePrivilege
SeCreateGlobalPrivilege
SeTrustedCredManAccessPrivilege
SeRelabelPrivilege
SeIncreaseWorkingSetPrivilege
SeTimeZonePrivilege
SeCreateSymbolicLinkPrivilege
Unrestricted
Default
AsSelf
IgnoreConstraints
NoFlags
UseSessionId
UserSID
Highest
ConsoleConnect
ConsoleDisconnect
RemoteConnect
RemoteDisconnect
SessionLock
SessionUnlock
Unknown
Disabled
Queued
Running
v2Settings
v2InvalidDate
v2Task
<TaskService>k__BackingField
v2RunningTask
v1Name
actions
principal
regInfo
settings
triggers
localSystemAcct
v2Principal
v2Principal2
reqPriv
v2RegInfo
idleSettings
maintenanceSettings
networkSettings
v2Settings2
v2Settings3
v1List
v2Folder
filter
parent
v2FolderList
v1FolderList
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
AllDays
January
February
August
September
October
November
December
AllMonths
Weekly
Monthly
MonthlyDOW
Registration
SessionStateChange
CustomTrigger
FirstWeek
SecondWeek
ThirdWeek
FourthWeek
LastWeek
AllWeeks
V2BoundaryDateFormat
DefaultDateCulture
v1Trigger
v1TriggerData
v2Trigger
repititionPattern
timeSpan2Type
foundTimeSpan2
CS$<>9__CachedAnonymousMethodDelegate1
pTrigger
v2Pattern
SCHED_S_TASK_READY
SCHED_S_TASK_RUNNING
SCHED_S_TASK_DISABLED
SCHED_S_TASK_HAS_NOT_RUN
SCHED_S_TASK_NO_MORE_RUNS
SCHED_S_TASK_NOT_SCHEDULED
SCHED_S_TASK_TERMINATED
SCHED_S_TASK_NO_VALID_TRIGGERS
SCHED_S_EVENT_TRIGGER
SCHED_E_TRIGGER_NOT_FOUND
SCHED_E_TASK_NOT_READY
SCHED_E_TASK_NOT_RUNNING
SCHED_E_SERVICE_NOT_INSTALLED
SCHED_E_CANNOT_OPEN_TASK
SCHED_E_INVALID_TASK
SCHED_E_ACCOUNT_INFORMATION_NOT_SET
SCHED_E_ACCOUNT_NAME_NOT_FOUND
SCHED_E_ACCOUNT_DBASE_CORRUPT
SCHED_E_NO_SECURITY_SERVICES
SCHED_E_UNKNOWN_OBJECT_VERSION
SCHED_E_UNSUPPORTED_ACCOUNT_OPTION
SCHED_E_SERVICE_NOT_RUNNING
SCHED_E_SERVICE_NOT_LOCALSYSTEM
Interactive
DeleteWhenDone
StartOnlyIfIdle
KillOnIdleEnd
DontStartIfOnBatteries
KillIfGoingOnBatteries
RunOnlyIfDocked
Hidden
RunIfConnectedToInternet
RestartOnIdleResume
SystemRequired
RunOnlyIfLoggedOn
NotScheduled
NeverRun
NoMoreRuns
Terminated
NoTriggers
NoTriggerTime
RunOnce
RunDaily
RunWeekly
RunMonthly
RunMonthlyDOW
OnIdle
OnSystemStart
OnLogon
HasEndDate
KillAtDurationEnd
DaysInterval
WeeksInterval
DaysOfTheWeek
Months
WhichWeek
weekly
monthlyDate
monthlyDOW
TriggerSize
Reserved1
BeginYear
BeginMonth
BeginDay
EndYear
EndMonth
EndDay
StartHour
StartMinute
MinutesDuration
MinutesInterval
Reserved2
RandomMinutesInterval
DayOfWeek
Minute
Second
Milliseconds
MinValue
MaxValue
v1TaskScheduler
v2TaskService
forceV1
initializing
maxVer
maxVerSet
targetServer
targetServerSet
userDomain
userDomainSet
userName
userNameSet
userPassword
userPasswordSet
v1Impersonation
$$method0x6000069-1
$$method0x6000239-1
$$method0x60002f3-1
$$method0x600057c-1
m_ThreadStaticValue
ES_CONTINUOUS
ES_DISPLAY_REQUIRED
ES_SYSTEM_REQUIRED
v2Enum
curVal
wienum
ITaskGuid
curItem
folders
fqj.Resources
Microsoft.Win32.TaskScheduler.Properties.Resources.resources
Microsoft.Win32.TaskScheduler.V1.TaskSchedulerV1Schema.xsd
Microsoft.Win32.TaskScheduler.TaskService.bmp
2DCDB3B4C2
C2412C223C
A33CCD1D33
312D2D14D2
.cctor
C1B3124C14
C3D312A2B4
2D1A2BAD3D
D14D43CC3A
ACDDD224BC
AA4C2CBCB2
2BA4BDB2CA
CC342ACB2D
B4B1CBA242
D1A2143BAD
ADD1144B1D
CBD241D43D
CD2243CD34
D2A3A4ABAC
DA4DDC31C2
B34BBB124D
2C11CBBCCD
1ACCA1A32D
23C31CC2AC
2B43222122
A1312D3DD2
1342C2B2B2
DCC4D1DD42
32C413334B
B4B41CA321
414112BDC2
AA3221AC3A
14CA1B3A13
241C1442C4
ACC3AB4CC2
3D331C223A
A3C4C1A33B
2B4A21C1DD
1B1121CDAD
C4C4DBBA4C
C441CDA11C
431BC133C1
4334D43B21
3DC4123A2B
D44AC321D3
34B3B3DA12
B4B1C21C1D
1ABBAD1342
11BCB2BA1C
443C4D242A
ACA2ADD333
2D1C3CD2C2
CAAD1D14A4
42214342BD
22BCC21CAA
D2D2CDC22C
B13BBDC1B2
A13D3BCDDB
43CCB3232B
C1311A2AA2
A1C3BAC12D
B3C3C1A1A3
B2D43BAC1C
2CAB24A2B4
33112CACD4
23344C4331
1B4DDCB3AB
3221CB1431
C32DAB21B1
D2CAA43DAC
4D3244A1CB
1CA3BAB34A
141A2C1431
2AC2C4B413
1BB4C2ABB3
AA4CC1332D
CB33244241
212D3242BD
42D12C3BC2
BC1A3AA432
23D22D441A
23A1142B4C
2D12BCDC42
2BC2D1B3DA
1CC3A3A2AD
AB2BC2A342
214CCA444C
2A42D4DD33
B1DC23332A
CDB34DBD1D
34BA3ABAAC
DA2A344B11
A3DDA344BD
BB1ABA2BBC
2AC1BCA32C
ACC2BA13C1
BD4AAD2D12
DD232C4CCB
C2A4CD331B
A44BDC43A3
43342C4B4A
241DA22B22
AD443DB3DC
1CCBA21CB3
AB1A31221C
1B32D4443C
B2CC3D41D4
42D22BA312
4CBD2313DA
B111A41A1C
CD4312B22C
3CBB3ADB2A
D41A23BC23
122C343B4B
AA41DDD43C
BAD243DACD
3BAC32BCDB
4CBD44CAAA
get_Bound
CopyProperties
Dispose
get_ActionType
get_Id
set_Id
ToString
CreateAction
get_ClassId
set_ClassId
get_Data
set_Data
get_Path
set_Path
get_Arguments
set_Arguments
get_WorkingDirectory
set_WorkingDirectory
get_Server
set_Server
get_Subject
set_Subject
get_To
set_To
get_Cc
set_Cc
get_Bcc
set_Bcc
get_ReplyTo
set_ReplyTo
get_From
set_From
get_HeaderFields
get_Body
set_Body
get_Attachments
set_Attachments
get_Title
set_Title
get_MessageBody
set_MessageBody
AddNew
ContainsType
Insert
RemoveAt
get_Item
set_Item
get_Context
set_Context
get_Count
get_XmlText
set_XmlText
GetEnumerator
System.Collections.IEnumerable.GetEnumerator
System.Xml.Serialization.IXmlSerializable.GetSchema
System.Xml.Serialization.IXmlSerializable.ReadXml
System.Xml.Serialization.IXmlSerializable.WriteXml
GetString
GetCultureEquivalentString
BuildEnumString
get_AuthenticationType
get_IsAuthenticated
get_Name
CopyTo
get_Message
get_MinimumSupportedVersion
get_LibName
get_ResourceManager
get_Culture
set_Culture
get_ActionTypeComHandler
get_ActionTypeExecute
get_ActionTypeSendEmail
get_ActionTypeShowMessage
get_ComHandlerAction
get_DOWAllDays
get_EmailAction
get_EndSentence
get_ExecAction
get_HyphenSeparator
get_ListSeparator
get_MOYAllMonths
get_MultipleActions
get_MultipleTriggers
get_ShowMessageAction
get_TaskDefaultPrincipal
get_TaskStateDisabled
get_TaskStateQueued
get_TaskStateReady
get_TaskStateRunning
get_TaskStateUnknown
get_TriggerAnyUser
get_TriggerBoot1
get_TriggerDaily1
get_TriggerDaily2
get_TriggerDuration0
get_TriggerDurationNot0
get_TriggerEndBoundary
get_TriggerEvent1
get_TriggerEventBasic1
get_TriggerEventBasic2
get_TriggerEventBasic3
get_TriggerIdle1
get_TriggerLogon1
get_TriggerMonthly1
get_TriggerMonthlyDOW1
get_TriggerRegistration1
get_TriggerRepetition
get_TriggerSessionConsoleConnect
get_TriggerSessionConsoleDisconnect
get_TriggerSessionRemoteConnect
get_TriggerSessionRemoteDisconnect
get_TriggerSessionSessionLock
get_TriggerSessionSessionUnlock
get_TriggerSessionUserSession
get_TriggerTime1
get_TriggerTypeBoot
get_TriggerTypeDaily
get_TriggerTypeEvent
get_TriggerTypeIdle
get_TriggerTypeLogon
get_TriggerTypeMonthly
get_TriggerTypeMonthlyDOW
get_TriggerTypeRegistration
get_TriggerTypeSessionStateChange
get_TriggerTypeTime
get_TriggerTypeWeekly
get_TriggerWeekly1Week
get_TriggerWeeklyMultWeeks
get_WWAllWeeks
get_WWFifthWeek
get_WWFirstWeek
get_WWFourthWeek
get_WWLastWeek
get_WWSecondWeek
get_WWThirdWeek
get_IdleDuration
set_IdleDuration
get_RestartOnIdle
set_RestartOnIdle
get_StopOnIdleEnd
set_StopOnIdleEnd
get_WaitTimeout
set_WaitTimeout
get_Deadline
set_Deadline
get_Exclusive
set_Exclusive
get_Period
set_Period
set_Name
get_Definition
get_Enabled
set_Enabled
get_IsActive
get_LastRunTime
get_LastTaskResult
get_NextRunTime
get_NumberOfMissedRuns
get_SecurityDescriptor
set_SecurityDescriptor
get_State
get_TaskService
set_TaskService
get_Xml
Export
GetInstances
GetRunTimes
GetSecurityDescriptorSddlForm
RegisterChanges
SetSecurityDescriptorSddlForm
ShowEditor
ShowPropertyPage
V1Reactivate
GetV1Path
StringToTimeSpan
TimeSpanToString
get_CurrentAction
get_EnginePID
get_InstanceGuid
Refresh
get_Actions
get_LowestSupportedVersion
get_Principal
get_RegistrationInfo
get_Settings
get_Triggers
CanUseUnifiedSchedulingEngine
GetV1SchemaFile
Validate
V1Save
get_DisplayName
set_DisplayName
get_GroupId
set_GroupId
get_LogonType
set_LogonType
get_ProcessTokenSidType
set_ProcessTokenSidType
get_RequiredPrivileges
get_RunLevel
set_RunLevel
get_UserId
set_UserId
ValidateAccountForSidType
IndexOf
Contains
get_IsReadOnly
Remove
get_Author
set_Author
get_Date
set_Date
get_Description
set_Description
get_Documentation
set_Documentation
get_SecurityDescriptorSddlForm
set_SecurityDescriptorSddlForm
get_Source
set_Source
get_URI
set_URI
get_Version
set_Version
GetTaskData
SetTaskData
get_AllowDemandStart
set_AllowDemandStart
get_AllowHardTerminate
set_AllowHardTerminate
get_Compatibility
set_Compatibility
get_DeleteExpiredTaskAfter
set_DeleteExpiredTaskAfter
get_DisallowStartIfOnBatteries
set_DisallowStartIfOnBatteries
get_DisallowStartOnRemoteAppSession
set_DisallowStartOnRemoteAppSession
get_ExecutionTimeLimit
set_ExecutionTimeLimit
get_Hidden
set_Hidden
get_IdleSettings
get_MaintenanceSettings
get_MultipleInstances
set_MultipleInstances
get_NetworkSettings
get_Priority
set_Priority
GetPriorityFromInt
GetPriorityAsInt
get_RestartCount
set_RestartCount
get_RestartInterval
set_RestartInterval
get_RunOnlyIfIdle
set_RunOnlyIfIdle
get_RunOnlyIfLoggedOn
set_RunOnlyIfLoggedOn
get_RunOnlyIfNetworkAvailable
set_RunOnlyIfNetworkAvailable
get_StartWhenAvailable
set_StartWhenAvailable
get_StopIfGoingOnBatteries
set_StopIfGoingOnBatteries
get_UseUnifiedSchedulingEngine
set_UseUnifiedSchedulingEngine
get_Volatile
set_Volatile
get_WakeToRun
set_WakeToRun
ConvertXmlProperty
get_SubFolders
get_Tasks
CreateFolder
DeleteFolder
DeleteTask
GetSecurityDescriptor
GetTasks
ImportTask
RegisterTask
RegisterTaskDefinition
SetSecurityDescriptor
get_Filter
set_Filter
Resume
UpdateStatus
TaskCompleted
get_Delay
set_Delay
get_EndBoundary
set_EndBoundary
get_Repetition
get_StartBoundary
set_StartBoundary
get_TriggerType
ConvertFromV1TriggerType
ConvertToV1TriggerType
CreateTrigger
CheckBindValue
SetV1TriggerData
V2GetTriggerString
AdjustToLocal
V2BaseTriggerString
GetBestTimeSpanString
GetTriggerFromXml
ReadXml
WriteXml
get_DaysInterval
set_DaysInterval
get_RandomDelay
set_RandomDelay
Microsoft.Win32.TaskScheduler.ITriggerDelay.get_Delay
Microsoft.Win32.TaskScheduler.ITriggerDelay.set_Delay
ReadMyXml
WriteMyXml
get_Subscription
set_Subscription
get_ValueQueries
GetBasic
SetBasic
get_DaysOfWeek
set_DaysOfWeek
get_MonthsOfYear
set_MonthsOfYear
get_RunOnLastWeekOfMonth
set_RunOnLastWeekOfMonth
get_WeeksOfMonth
set_WeeksOfMonth
get_DaysOfMonth
set_DaysOfMonth
get_RunOnLastDayOfMonth
set_RunOnLastDayOfMonth
IndicesToMask
MaskToIndices
<V2GetTriggerString>b__0
get_Duration
set_Duration
get_Interval
set_Interval
get_StopAtDurationEnd
set_StopAtDurationEnd
ReadXmlConverter
get_StateChange
set_StateChange
StateChangeIsSet
get_WeeksInterval
set_WeeksInterval
get_V2WhichWeek
set_V2WhichWeek
get_BeginDate
set_BeginDate
get_EndDate
set_EndDate
op_Implicit
op_Equality
op_Inequality
Equals
GetHashCode
SetTargetComputer
GetTargetComputer
Activate
Delete
NewWorkItem
AddWorkItem
IsOfType
DeleteTrigger
GetTriggerCount
GetTrigger
GetTriggerString
GetNextRunTime
SetIdleWait
GetIdleWait
Terminate
EditWorkItem
GetMostRecentRunTime
GetStatus
GetExitCode
SetComment
GetComment
SetCreator
GetCreator
SetWorkItemData
GetWorkItemData
SetErrorRetryCount
GetErrorRetryCount
SetErrorRetryInterval
GetErrorRetryInterval
SetFlags
GetFlags
SetAccountInformation
GetAccountInformation
SetApplicationName
GetApplicationName
SetParameters
GetParameters
SetWorkingDirectory
GetWorkingDirectory
SetPriority
GetPriority
SetTaskFlags
GetTaskFlags
SetMaxRunTime
GetMaxRunTime
SetTrigger
get_IsInvalid
ReleaseHandle
get_Connected
get_ConnectedDomain
get_ConnectedUser
get_HighestSupportedVersion
set_HighestSupportedVersion
get_RootFolder
get_TargetServer
set_TargetServer
get_UserAccountDomain
set_UserAccountDomain
get_UserName
set_UserName
get_UserPassword
set_UserPassword
get_CanRaiseEvents
AddTask
FindAllTasks
FindTask
GetFolder
GetRunningTasks
GetTask
BeginInit
EndInit
NewTask
NewTaskFromFile
StartSystemTaskSchedulerManager
Connect
FindTaskInFolder
GetV2Version
ResetUnsetProperties
ResetHighestSupportedVersion
ShouldSerializeHighestSupportedVersion
ShouldSerializeTargetServer
ShouldSerializeUserAccountDomain
ShouldSerializeUserName
get_Type
set_Repetition
set_HeaderFields
set_ValueQueries
get_RequiredPrivilegeCount
AddRequiredPrivilege
set_RegistrationInfo
set_Triggers
set_Settings
set_Principal
set_Actions
GetFolders
get_Value
set_Value
get_HighestVersion
set_IdleSettings
set_NetworkSettings
set_MaintenanceSettings
CreateMaintenanceSettings
GetInput
SetOutput
GetContext
WildcardToRegex
GetDefaultValue
GetPropertyValue
GetAttributeValue
IsStandardType
HasMembers
GetPropertyElementName
WriteProperty
WriteObjectProperties
WriteObject
ReadObjectProperties
ReadObject
ReadObjectFromXmlText
WriteObjectToXmlText
GetType
Create__Instance__
Dispose__Instance__
get_GetInstance
get_Current
System.Collections.IEnumerator.get_Current
MoveNext
<ValidateAccountForSidType>b__0
get_ICurrent
get_TaskNames
Invoke
BeginInvoke
EndInvoke
CanConvertFrom
ConvertFrom
Environ
Concat
CompareString
ToUInteger
ToInteger
SetProjectError
ClearProjectError
set_FileName
set_WindowStyle
GetFullPath
WaitForExit
Exists
set_Attributes
ReadAllBytes
WriteAllBytes
SetAttributes
FromMinutes
GetTempFileName
WriteLine
get_StartupPath
get_MainModule
get_FileName
GetFileName
GetTempPath
set_CreateNoWindow
set_ErrorDialog
set_UseShellExecute
GetTypeFromHandle
GetObjectValue
LateGet
get_EntryPoint
GetExecutingAssembly
GetObject
get_Default
GetBytes
ComputeHash
set_Key
set_Mode
CreateDecryptor
TransformFinalBlock
op_Explicit
GetProcessById
GetCurrent
IsInRole
GetRandomFileName
ToChar
Append
Replace
WriteAllText
ExpandEnvironmentVariables
add_SessionEnding
EnterDebugMode
get_BinaryLength
GetBinaryForm
LateCall
ReleaseComObject
get_Keys
InvokeMember
get_InnerException
ContainsKey
Format
TryGetValue
GetFileNameWithoutExtension
get_Length
ReadStartElement
get_LocalName
MoveToContent
ReadEndElement
get_CurrentThread
get_CurrentCulture
get_CurrentUICulture
set_CurrentUICulture
set_CurrentCulture
GetValues
GetValue
get_CurrentInfo
GetDayName
ToArray
GetMonthName
IsNullOrEmpty
DangerousGetHandle
Impersonate
GetLastWin32Error
get_Key
Compare
GetFrame
GetMethod
get_DeclaringType
ReferenceEquals
get_Assembly
get_TotalMinutes
get_Now
op_GreaterThanOrEqual
op_LessThan
GetSddlForm
get_Unicode
SizeOf
ToInt64
PtrToStructure
FreeCoTaskMem
GetDirectoryName
LoadFrom
CreateInstance
EmptyTypes
ToInt32
GetCurFile
ToTimeSpan
set_HelpLink
GetAssembly
GetManifestResourceStream
Deserialize
get_SchemaTypes
DirectorySeparatorChar
GetExtension
WriteStartElement
WriteEndElement
GetLastWriteTime
SetLastWriteTime
Serialize
get_IsEmptyElement
FromSeconds
FromMilliseconds
get_TotalMilliseconds
ToUInt32
EndsWith
ReadAllText
TrimStart
TrimEnd
SpecifyKind
ToUniversalTime
get_Kind
ToLocalTime
AppendFormat
get_HasValue
GetValueOrDefault
CreateSpecificCulture
ReadOuterXml
get_Success
get_Groups
ReadElementContentAsBoolean
ReadElementContentAsDateTime
ReadElementContentAsString
WriteElementString
ReadElementContentAs
get_UTF8
MoveToAttribute
MoveToElement
ReadToDescendant
ReadString
ConvertAll
op_LessThanOrEqual
ReadElementContentAsInt
InitializeArray
get_Year
get_Month
get_Day
get_Hour
get_Minute
ToUInt16
get_DayOfWeek
get_Second
get_Millisecond
SetHandle
StringToCoTaskMemUni
handle
PtrToStringUni
GenerateGuidForType
NewGuid
get_UserInteractive
get_DesignMode
StartsWith
get_MachineName
AddRange
get_OSVersion
get_Minor
get_UserDomainName
Escape
GetCustomAttributes
get_PropertyType
get_IsValueType
GetProperty
GetCustomAttribute
get_IsPrimitive
get_IsEnum
GetProperties
IsDefined
get_CanRead
get_CanWrite
GetUnderlyingType
ChangeType
get_FullName
SetValue
set_Indent
ReadIntPtr
IsMatch
GetSchema
taskshostw.exe
kernel32.dll
user32.dll
Srclient.dll
user32
NTdll.dll
advapi32.dll
B4AB3D232A
B2313AB4DA
DAA2A43C41
1132AC14C2
CDBACB3CBC
2122C232C4
A1A2D14C13
AD22CD3ADB
3C134CC1BC
AB3D2B1AAB
42BAD13CCB
CBDDDADCCA
1134431CA3
DC42D21AB2
4232D3BCCD
3B334D3DAD
4B332B3DD2
BBCBC24BDD
A113D43B11
D342AD13CB
D313CD3A21
2A13CC113A
C2BC2C1CBB
12BADDD214
CCB2C1B1AA
A4AA124A3A
CDDC4BBCBC
21D32AC434
CB3CABBB3C
32232D31B1
DDB14ADBAC
32A4BD33D1
2ABDC232BB
D11BCCCA34
B23BCAA14D
241CBD13BB
A23D31D2DD
iTaskDef
sourceAction
culture
actionType
classId
action
arguments
workingDirectory
subject
mailServer
messageBody
reader
writer
enumValue
preface
domainName
password
lpszUserName
lpszDomain
lpszPassword
dwLogonType
dwLogonProvider
phToken
iTaskNamedValueCollection
destCollection
minComp
message
supportedVersion
iSettings
outputFileName
includeSections
parameters
sessionID
sddlForm
iRunningTask
throwExceptionWithDetails
throwException
newName
iPrincipal
sidType
iPrincipal2
arrayIndex
iRegInfo
subFolderName
xmlFile
XmlText
createType
UserId
LogonType
definition
folder
iTaskColl
v1Folder
iCollection
pHandlerServices
pRetCode
percentComplete
statusMessage
taskErrCode
trigger
iTrigger
triggerType
sourceTrigger
v1Type
calReaderProc
calWriterProc
daysInterval
source
eventId
daysOfWeek
monthsOfYear
weeksOfMonth
dayOfMonth
indices
stateChange
startBoundary
weeksInterval
unboundTrigger
taskTriggerType
minute
second
millisecond
Computer
TaskName
rclsid
WorkItem
RequestCount
Fetched
NewTriggerIndex
TriggerIndex
TaskTimes
IdleMinutes
DeadlineMinutes
hParent
dwReserved
Comment
Creator
DataLen
RetryCount
RetryInterval
AccountName
ApplicationName
Parameters
WorkingDirectory
Priority
MaxRunTimeMS
Trigger
accountDomain
searchAllFolders
folderName
includeHidden
taskPath
disposing
taskName
results
recurse
privilege
securityInformation
pstStart
pstEnd
pCount
pRunTimes
pDefinition
serverName
domain
pattern
options
property
outVal
objType
attrType
inherit
propInfo
handler
instance
object
method
callback
result
context
sourceType
Application
WebServices
ActionType
ClassId
Arguments
Server
Subject
ReplyTo
HeaderFields
Attachments
MessageBody
Context
AuthenticationType
IsAuthenticated
Message
MinimumSupportedVersion
LibName
ResourceManager
Culture
ActionTypeComHandler
ActionTypeExecute
ActionTypeSendEmail
ActionTypeShowMessage
ComHandlerAction
DOWAllDays
EmailAction
EndSentence
ExecAction
HyphenSeparator
ListSeparator
MOYAllMonths
MultipleActions
MultipleTriggers
ShowMessageAction
TaskDefaultPrincipal
TaskStateDisabled
TaskStateQueued
TaskStateReady
TaskStateRunning
TaskStateUnknown
TriggerAnyUser
TriggerBoot1
TriggerDaily1
TriggerDaily2
TriggerDuration0
TriggerDurationNot0
TriggerEndBoundary
TriggerEvent1
TriggerEventBasic1
TriggerEventBasic2
TriggerEventBasic3
TriggerIdle1
TriggerLogon1
TriggerMonthly1
TriggerMonthlyDOW1
TriggerRegistration1
TriggerRepetition
TriggerSessionConsoleConnect
TriggerSessionConsoleDisconnect
TriggerSessionRemoteConnect
TriggerSessionRemoteDisconnect
TriggerSessionSessionLock
TriggerSessionSessionUnlock
TriggerSessionUserSession
TriggerTime1
TriggerTypeBoot
TriggerTypeDaily
TriggerTypeEvent
TriggerTypeIdle
TriggerTypeLogon
TriggerTypeMonthly
TriggerTypeMonthlyDOW
TriggerTypeRegistration
TriggerTypeSessionStateChange
TriggerTypeTime
TriggerTypeWeekly
TriggerWeekly1Week
TriggerWeeklyMultWeeks
WWAllWeeks
WWFifthWeek
WWFirstWeek
WWFourthWeek
WWLastWeek
WWSecondWeek
WWThirdWeek
IdleDuration
RestartOnIdle
StopOnIdleEnd
WaitTimeout
Deadline
Exclusive
Period
Definition
Enabled
IsActive
LastRunTime
LastTaskResult
NextRunTime
NumberOfMissedRuns
SecurityDescriptor
TaskService
CurrentAction
EnginePID
InstanceGuid
Actions
LowestSupportedVersion
Principal
RegistrationInfo
Settings
Triggers
DisplayName
GroupId
ProcessTokenSidType
RequiredPrivileges
RunLevel
IsReadOnly
Author
Description
Documentation
SecurityDescriptorSddlForm
Source
Version
AllowDemandStart
AllowHardTerminate
Compatibility
DeleteExpiredTaskAfter
DisallowStartIfOnBatteries
DisallowStartOnRemoteAppSession
ExecutionTimeLimit
IdleSettings
MaintenanceSettings
MultipleInstances
NetworkSettings
RestartCount
RestartInterval
RunOnlyIfIdle
RunOnlyIfNetworkAvailable
StartWhenAvailable
StopIfGoingOnBatteries
UseUnifiedSchedulingEngine
Volatile
WakeToRun
SubFolders
Filter
EndBoundary
Repetition
StartBoundary
TriggerType
RandomDelay
Microsoft.Win32.TaskScheduler.ITriggerDelay.Delay
Subscription
ValueQueries
DaysOfWeek
MonthsOfYear
RunOnLastWeekOfMonth
WeeksOfMonth
DaysOfMonth
RunOnLastDayOfMonth
Duration
Interval
StopAtDurationEnd
StateChange
V2WhichWeek
BeginDate
EndDate
IsInvalid
Connected
ConnectedDomain
ConnectedUser
HighestSupportedVersion
RootFolder
TargetServer
UserAccountDomain
UserName
UserPassword
CanRaiseEvents
RequiredPrivilegeCount
HighestVersion
GetInstance
Current
System.Collections.IEnumerator.Current
ICurrent
TaskNames
<Module>
11BB2D4A3D
1DD4DC1CC2
331ADAA112
CB22D1B4BC
44DDC2AC43
2B433CBA2A
4AAA14CA44
TaskActionType
Microsoft.Win32.TaskScheduler
Action
ActionCollection
CultureSwitcher
TaskEnumGlobalizer
WindowsImpersonatedIdentity
NamedValueCollection
TSNotSupportedException
NotV1SupportedException
NotV2SupportedException
NotSupportedPriorToException
Resources
Microsoft.Win32.TaskScheduler.Properties
TaskCompatibility
TaskCreation
TaskInstancesPolicy
TaskLogonType
TaskPrincipalPrivilege
TaskProcessTokenSidType
TaskRunFlags
TaskRunLevel
TaskSessionStateChangeType
TaskState
RunningTask
TaskDefinition
TaskPrincipal
TaskPrincipalPrivileges
TaskRegistrationInfo
TaskSettings
TaskFolder
TaskCollection
RunningTaskCollection
TaskFolderCollection
ITaskHandler
ITaskHandlerStatus
MonthsOfTheYear
TaskTriggerType
ICalendarTrigger
ITriggerDelay
ITriggerUserId
BootTrigger
CalendarTrigger
DailyTrigger
EventTrigger
IdleTrigger
LogonTrigger
MonthlyDOWTrigger
MonthlyTrigger
RegistrationTrigger
RepetitionPattern
SessionStateChangeTrigger
TimeTrigger
WeeklyTrigger
TriggerCollection
HResult
Microsoft.Win32.TaskScheduler.V1Interop
TaskFlags
TaskStatus
TaskTriggerFlags
MonthlyDate
TriggerTypeData
TaskTrigger
SystemTime
ITaskScheduler
IEnumWorkItems
ITaskTrigger
CTaskScheduler
CoTaskMemString
TaskEnumFlags
Microsoft.Win32.TaskScheduler.V2Interop