時間トリガーの例 (XML)
この例の XML では、メモ帳を特定の時刻に起動するタスクを定義しています。
XML で定義されているタスクを登録するには、ITaskFolder::RegisterTask 関数 (スクリプトの場合は TaskFolder.RegisterTask ) または Schtasks.exe コマンドライン ツールを使用できます。 Schtasks.exe ツール (C:\Windows\System32 ディレクトリにあります) を使用する場合は、次のコマンドを使用してタスクを登録できます: schtasks /create /XML <タスク定義がある XML ファイルのパス> /tn <タスク名>
メモ帳を特定の時刻に起動するタスクを定義するには
次の XML サンプルは、単一の実行アクション (メモ帳の起動)、特定の時刻にタスクを開始する 1 つの時間トリガー、およびタスク スケジューラによるタスクの処理方法に影響を与える他のいくつかのタスク設定を使用して、タスクを定義する方法を示したものです。
<?xml version="1.0" ?>
<!--
This sample schedules a task to start notepad.exe at a specific time.
-->
<Task xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2005-10-11T13:21:17-08:00</Date>
<Author>AuthorName</Author>
<Version>1.0.0</Version>
<Description>Task starts after at a specified time.</Description>
</RegistrationInfo>
<Triggers>
<TimeTrigger>
<StartBoundary>2005-10-11T13:21:17-08:00</StartBoundary>
<EndBoundary>2006-01-01T00:00:00-08:00</EndBoundary>
<Enabled>true</Enabled>
<ExecutionTimeLimit>PT5M</ExecutionTimeLimit>
</TimeTrigger>
</Triggers>
<Principals>
<Principal>
<UserId>Administrator</UserId>
<LogonType>InteractiveToken</LogonType>
</Principal>
</Principals>
<Settings>
<Enabled>true</Enabled>
<AllowStartOnDemand>true</AllowStartOnDemand>
<AllowHardTerminate>true</AllowHardTerminate>
</Settings>
<Actions>
<Exec>
<Command>notepad.exe</Command>
</Exec>
</Actions>
</Task>
TaskScheduler スキーマ要素
この例を使用する際に注意すべき重要な要素を次に示します。
- RegistrationInfo: タスクに関する登録情報が含まれています。
- Triggers: タスクを開始するトリガーを定義します。
- TimeTrigger: 時間トリガーを定義します。 このケースでは、トリガーがアクティブ化および非アクティブ化されるタイミングを指定する開始境界と終了境界、およびトリガーによってタスクを開始できる最大時間を指定する実行時間制限の 3 つの子要素が使用されています。 StartBoundary 要素は時間トリガーに必要な要素です。
- Principal: タスクが実行されるセキュリティ コンテキストを定義します。
- Settings: タスク スケジューラがタスクの実行に使用するタスク設定を定義します。
- Actions: タスクが実行するアクション (このケースではメモ帳の実行) を定義します。
関連トピック