I need to get the exact location of a process name that a scheduled job is executing. I want to use WMIC JOB (if you have any other suggestions.. let me know) to get that, but I don't know HOW exactly. I've tried several variations but no luck so far.

How should I?

link|improve this question
Of course I tried, it's just that WMIC is a huge subject and I don't know what to do with it exactly. :) – ETL Dec 20 '11 at 16:36
feedback

1 Answer

Here is something to begin.

Get the process identifier of the service Schedule

wmic service where name='schedule' get ProcessId
ProcessId
288

Get the process which parent process identifier is the Schedule service

wmic process where ParentProcessId=288

Edited

I don't think that in Microsoft system jobs are what you are looking for :

A job object allows groups of processes to be managed as a unit. Job objects are namable, securable, shareable objects that control attributes of the processes associated with them. Operations performed on a job object affect all processes associated with the job object. Examples include enforcing limits such as working set size and process priority or terminating all processes associated with a job.

I think you are looking for process.

To answer your question I look for the processes started by the schedule service. If you want the exact location, it's given by the property ExecutablePath.

wmic process where ParentProcessId=288 get ExecutablePath
ExecutablePath
C:\Windows\system32\wuauclt.exe
link|improve this answer
The unnecessary comments were removed. Those commands are related to how to get to Schedule service, not to the location of a process name (+process name). Am I missing somethig? Why did you use WMIC SERVICE / PROCESS and not JOB? Is that part of all of this? Thanks. – ETL Dec 20 '11 at 16:34
I modify my answer. – JPBlanc Dec 21 '11 at 4:44
I see. But my point is not necessary to look for processes started by the schedule service. For example, if the schedule service is disabled, the code won't find all what I need. – ETL Dec 21 '11 at 10:20
I've got some code to do what I need, but it's not short as WMIC (JOB or whatever) can be, and that's why I search for alternative(s). – ETL Dec 21 '11 at 10:22
I thought about something in this direction- WMIC job "TaskName" get command. Something like that. Thanks again. – ETL Dec 21 '11 at 10:26
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.