Using wmic to get information about process.

wmic process where processid="<PID>"

gives many details (Caption, creationtime, arguments, ExecutablePath etc) . Right now I am processing the output to get name and process-executable-path. Is there any formatting option to get same result?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You're better off using Powershell's gwmi to more efficiently extract and format the data you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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