Task scheduler ONEVENT Schedule Frequency.

  • Thread starter Thread starter Wake-Up-Jeff
  • Start date Start date
W

Wake-Up-Jeff

Guest
The vista task scheduler schtasks.exe provides the facility to take an
action when an event has been recorded in the Windows event log.

This facility is only really useful if the triggered action has access to
aspects of the event, such as date, time and event message. Is there any way
to get this information passed to the triggered action from the event log
entry?

I can't see a way, either by using the command line schtasks.exe, or the
task scheduler GUI.
 
"Wake-Up-Jeff" <artvandal8@hotmail.com> wrote in message
news:eccSF3dvHHA.1204@TK2MSFTNGP03.phx.gbl...
> The vista task scheduler schtasks.exe provides the facility to take an
> action when an event has been recorded in the Windows event log.
>
> This facility is only really useful if the triggered action has access to
> aspects of the event, such as date, time and event message. Is there any
> way to get this information passed to the triggered action from the event
> log entry?
>
> I can't see a way, either by using the command line schtasks.exe, or the
> task scheduler GUI.
>
>


Don't know of way of doing that, but since you know the event id / log that
triggered it, the task that runs can process the Event Logs for the most
recent event with that particular event id.

--
Jon
 
"Jon" <Email_Address@SomewhereOrOther.com> wrote in message
news:OYg3WDevHHA.2352@TK2MSFTNGP03.phx.gbl...
>
> "Wake-Up-Jeff" <artvandal8@hotmail.com> wrote in message
> news:eccSF3dvHHA.1204@TK2MSFTNGP03.phx.gbl...
>> The vista task scheduler schtasks.exe provides the facility to take an
>> action when an event has been recorded in the Windows event log.
>>
>> This facility is only really useful if the triggered action has access to
>> aspects of the event, such as date, time and event message. Is there any
>> way to get this information passed to the triggered action from the event
>> log entry?
>>
>> I can't see a way, either by using the command line schtasks.exe, or the
>> task scheduler GUI.
>>
>>

>
> Don't know of way of doing that, but since you know the event id / log
> that triggered it, the task that runs can process the Event Logs for the
> most recent event with that particular event id.
>
> --
> Jon
>
>

Agreed. But I think that is a little clumsy.
In this case, it would be better to use WMI, which at least gives you the
event detail when the event is triggered.
I would prefer to use the scheduler, as it gives a nice interface, and it
provides a really rich environment for event triggers.
 
"Wake-Up-Jeff" <artvandal8@hotmail.com> wrote in message
news:u2bXrcevHHA.4800@TK2MSFTNGP05.phx.gbl...
>
> "Jon" <Email_Address@SomewhereOrOther.com> wrote in message
> news:OYg3WDevHHA.2352@TK2MSFTNGP03.phx.gbl...
>>
>> "Wake-Up-Jeff" <artvandal8@hotmail.com> wrote in message
>> news:eccSF3dvHHA.1204@TK2MSFTNGP03.phx.gbl...
>>> The vista task scheduler schtasks.exe provides the facility to take an
>>> action when an event has been recorded in the Windows event log.
>>>
>>> This facility is only really useful if the triggered action has access
>>> to aspects of the event, such as date, time and event message. Is there
>>> any way to get this information passed to the triggered action from the
>>> event log entry?
>>>
>>> I can't see a way, either by using the command line schtasks.exe, or the
>>> task scheduler GUI.
>>>
>>>

>>
>> Don't know of way of doing that, but since you know the event id / log
>> that triggered it, the task that runs can process the Event Logs for the
>> most recent event with that particular event id.
>>
>> --
>> Jon
>>
>>

> Agreed. But I think that is a little clumsy.
> In this case, it would be better to use WMI, which at least gives you the
> event detail when the event is triggered.
> I would prefer to use the scheduler, as it gives a nice interface, and it
> provides a really rich environment for event triggers.
>
>




Not ideal, I agree. It's a pity there's not more information being passed as
argument to the task triggered by the event, although it's quite possible
that there's hidden option that's not been documented, similar to the
$(Arg0) that you can pass to a program etc. Would be interested too in
knowing it, if there is. Would be nice if someone from MS could shed some
light on the issue.

--
Jon
 
Back
Top