I need to create a schedule task using Powershell with "Run whether user is logged on or not".
I use the following codes to create a task, and I've checked the members of settings, principal, triggers, and action, but failed to find the setting I need.
$service = new-object -com("Schedule.Service")
$service.connect($servername)
$rootFolder = $service.Getfolder("\")
$taskDefinition = $service.NewTask(0)
$settings = $taskDefinition.Settings
$principal = $taskDefinition.Principal
$triggers = $taskDefinition.Triggers
$Action = $taskDefinition.Actions.Create( 0)
$rootFolder.RegisterTaskDefinition( $taksName, $taskDefinition, 6, $taskRunAsuser , $taskRunasUserPwd , 0)
Does anyone know how to do that?
Thanks