I'm using Powershell to talk to the Windows 7 task scheduler service via COM through the Task Scheduler 2.0 interfaces (e.g. ITaskDefinition). I want to pull out a particular trigger from the Triggers collection on ITaskDefinition. It appears that the proper way to extract a particular trigger is through the Item property, which is an indexed property.
My first try looks something like this:
$sched = New-Object -Com "Schedule.Service"
$sched.Connect()
$folder = $sched.GetFolder('\')
$task = $folder.GetTask("some task")
$triggers = $task.Definition.Triggers
$trigger = $triggers[0]
However, the last line fails with this message:
Unable to index into an object of type System.__ComObject.
I've tried some other variations on this theme, e.g. $triggers.Item(0)
, all with no luck. I'm guessing this has to do with $trigger
being a COM object, because I think indexed properties work fine on other types.
Does anyone know the correct way to do this?