There is a way to get the list of all running process/taks on Windows using the wmic interface? Is there is another way other than the windows task manager?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This might have more information than you want, but this does return that information.

wmic process get *

I suggest adding this to the command >c:\temp\process.doc and open it in Word with the orientation set to landscape.

Here are others that retrieve a bit less data, so pick the one you want:

WMIC PROCESS GET name, processid

WMIC PROCESS GET name,processid /VALUE

link|improve this answer
Thank you very much. – Diogo Jul 4 '11 at 16:36
@Diogo_Rocha And thank you for your 100% acceptance rate. We do appreciate that. – KCotreau Jul 4 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

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