Esempio di trigger di accesso (scripting)
In questo esempio di script viene illustrato come creare un'attività pianificata per l'esecuzione del Blocco note quando un utente accede. L'attività contiene un trigger di accesso che specifica un limite di inizio per l'avvio dell'attività e un identificatore utente che specifica l'utente. L'attività viene registrata usando il gruppo Administrators come contesto di sicurezza per eseguire l'attività.
La procedura seguente descrive come pianificare un eseguibile, ad esempio Blocco note, per avviare quando un utente specificato accede.
Per pianificare l'avvio del Blocco note quando un utente accede
- Creare un oggetto TaskService . Questo oggetto consente di creare l'attività in una cartella specificata.
- 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à.
- 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à.
- 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 accesso. Quando si crea il trigger, impostare il limite iniziale e il limite finale del trigger per attivare e disattivare il trigger. È necessario impostare la proprietà UserId per il trigger in modo che le azioni dell'attività vengano pianificate per l'esecuzione quando l'utente specificato accede dopo il limite di avvio.
- 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.
- Registrare l'attività usando il metodo TaskFolder.RegisterTaskDefinition . In questo esempio viene registrata l'attività in modo che usi il gruppo Administrators 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 quando un utente accede.
'---------------------------------------------------------
' This sample schedules a task to start notepad.exe when a user logs on.
'---------------------------------------------------------
' A constant that specifies a logon trigger.
const TriggerTypeLogon = 9
' 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 a " & _
"specified user logs on."
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 logon trigger.
Dim triggers
Set triggers = taskDefinition.Triggers
Dim trigger
Set trigger = triggers.Create(TriggerTypeLogon)
' 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 = "LogonTriggerId"
trigger.UserId = "DOMAIN\UserName" ' Must be a valid user account
'***********************************************************
' 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 Logon Trigger", taskDefinition, createOrUpdateTask, _
"Builtin\Administrators", , 4)
WScript.Echo "Task submitted."
Argomenti correlati