Condividi tramite


Esempio di trigger di avvio (scripting)

Questo esempio di scripting mostra come creare un'attività pianificata per l'esecuzione del Blocco note all'avvio del sistema. L'attività contiene un trigger di avvio che specifica un limite di inizio e un tempo di ritardo per l'avvio dell'attività dopo l'avvio del sistema. L'attività contiene anche un'azione che specifica l'attività da eseguire blocco note. L'attività viene registrata usando l'account del servizio locale come contesto di sicurezza per eseguire l'attività.

La procedura seguente descrive come pianificare un eseguibile, ad esempio blocco note, per l'avvio al momento dell'avvio del sistema.

Per pianificare l'avvio del Blocco note all'avvio del sistema

  1. Creare un oggetto TaskService . Questo oggetto consente di creare l'attività in una cartella specificata.
  2. Ottenere una cartella attività e creare un'attività. Utilizzare il metodo TaskService.GetFolder per ottenere la cartella in cui è archiviata l'attività e il metodo TaskService.NewTask per creare l'oggetto TaskDefinition che rappresenta l'attività.
  3. Definire informazioni sull'attività utilizzando l'oggetto TaskDefinition . Utilizzare la proprietà TaskDefinition.Settings per definire le impostazioni che determinano il modo in cui il servizio Utilità di pianificazione esegue l'attività e la proprietà TaskDefinition.RegistrationInfo per definire le informazioni che descrivono l'attività.
  4. Creare un trigger di accesso usando la proprietà TaskDefinition.Triggers . Questa proprietà consente l'accesso all'oggetto TriggerCollection . Utilizzare il metodo TriggerCollection.Create (specificando il tipo di trigger da creare) per creare un trigger di avvio. Quando si crea il trigger, impostare le proprietà StartBoundary e EndBoundary del trigger per attivare e disattivare il trigger. È anche possibile specificare un valore per la proprietà Delay del trigger di avvio.
  5. Creare un'azione per l'attività da eseguire usando la proprietà TaskDefinition.Actions . Questa proprietà fornisce l'accesso all'oggetto ActionCollection . Utilizzare il metodo ActionCollection.Create per specificare il tipo di azione da creare. In questo esempio viene utilizzato un oggetto ExecAction , che rappresenta un'azione che avvia un eseguibile.
  6. Registrare l'attività usando il metodo TaskFolder.RegisterTaskDefinition . L'attività viene registrata usando l'account del servizio locale come contesto di sicurezza per eseguire l'attività.

Nell'esempio di VBScript seguente viene illustrato come pianificare un'attività per l'esecuzione del Blocco note 30 secondi dopo l'avvio del sistema.

'---------------------------------------------------------
' This sample schedules a task to start notepad.exe 30 seconds after
' the system is booted.
'---------------------------------------------------------

' A constant that specifies a boot trigger.
const TriggerTypeBoot = 8
' A constant that specifies an executable action.
const ActionTypeExecutable = 0   

'********************************************************
' Create the TaskService object.
Set service = CreateObject("Schedule.Service")
call service.Connect()

'********************************************************
' Get a folder to create a task definition in. 
Dim rootFolder
Set rootFolder = service.GetFolder("\")

' The taskDefinition variable is the TaskDefinition object.
Dim taskDefinition
' The flags parameter is 0 because it is not supported.
Set taskDefinition = service.NewTask(0) 

'********************************************************
' Define information about the task.

' Set the registration info for the task by 
' creating the RegistrationInfo object.
Dim regInfo
Set regInfo = taskDefinition.RegistrationInfo
regInfo.Description = "Task will execute Notepad when " & _
    "the computer is booted."
regInfo.Author = "Author Name"

' Set the task setting info for the Task Scheduler by
' creating a TaskSettings object.
Dim settings
Set settings = taskDefinition.Settings
settings.StartWhenAvailable = True

'********************************************************
' Create a boot trigger.
Dim triggers
Set triggers = taskDefinition.Triggers

Dim trigger
Set trigger = triggers.Create(TriggerTypeBoot)

' Trigger variables that define when the trigger is active.
Dim startTime, endTime
startTime = "2006-05-02T10:49:02"
endTime = "2006-05-02T10:52:02"

WScript.Echo "startTime :" & startTime
WScript.Echo "endTime :" & endTime

trigger.StartBoundary = startTime
trigger.EndBoundary = endTime
trigger.ExecutionTimeLimit = "PT5M"    ' Five minutes
trigger.Id = "BootTriggerId"
trigger.Delay = "PT30S"                ' 30 Seconds   

'***********************************************************
' Create the action for the task to execute.

' Add an action to the task. The action executes notepad.
Dim Action
Set Action = taskDefinition.Actions.Create( ActionTypeExecutable )
Action.Path = "C:\Windows\System32\notepad.exe"

WScript.Echo "Task definition created. About to submit the task..."

'***********************************************************
' Register (create) the task.
const createOrUpdateTask = 6
call rootFolder.RegisterTaskDefinition( _
    "Test Boot Trigger", taskDefinition, createOrUpdateTask, _
    "Local Service", , 5)

WScript.Echo "Task submitted."

Uso dell'Utilità di pianificazione