Is there a command equivalent to 'ps' on Unix that can list all processes on a Windows machine?
|
1
|
|
|
|
|
|
|
|||
|
|
|
|
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): |
||
|
|
|
If you use Powershell, it has the 'ps' command (it is aliased to Get-Process) |
||
|
|
|
|
tasklist or pslist from sysinternals. Also, get-process is amazing from PowerShell. |
|||
|
|
|
|
There is a tool called Windows Management Instrumentation Command-line tool (wmic.exe). You can call "wmic process list" to see all processes. |
||
|
|
|
If you running windows XP try using the 'tasklist' command. I tried it out with Vista and it seems to also work. |
||
|
|
