vote up 14 vote down star
1

Is there a command equivalent to 'ps' on Unix that can list all processes on a Windows machine?

flag

6 Answers

vote up 15 vote down check

Working with cmd.exe:

tasklist

If you have Powershell:

get-process

link|flag
vote up 2 vote down

I wanted to mention that WMIC (pam's entry) can do a lot more. Have a look at my WMIC snippets page, which is a cheatsheet showing many of the common ways to use WMIC (with sample output shown):

http://quux.wiki.zoho.com/WMIC-Snippets.html

link|flag
very good - thank you for the link – Preet Sangha Mar 15 at 19:29
vote up 1 vote down

If you use Powershell, it has the 'ps' command (it is aliased to Get-Process)

link|flag
vote up 5 vote down

tasklist or pslist from sysinternals. Also, get-process is amazing from PowerShell.

link|flag
vote up 5 vote down

There is a tool called Windows Management Instrumentation Command-line tool (wmic.exe).

You can call "wmic process list" to see all processes.

link|flag
Neat! It gives the full path of the executable and and lots of other information. – Agnel Kurian Sep 10 '08 at 6:17
vote up 1 vote down

If you running windows XP try using the 'tasklist' command. I tried it out with Vista and it seems to also work.

link|flag

Your Answer

Get an OpenID
or

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