在Windows中如何在Windows 7中的命令提示符下获取所有进程及其子进程信息

时间:2012-09-27 06:49:19

标签: windows

在Windows中,Tasklist是命令,但是如何在Windows 7中列出正在运行的进程及其子进程

1 个答案:

答案 0 :(得分:17)

您可以使用以下命令获取PID和父PID的进程列表:

wmic process get Caption,ParentProcessId,ProcessId

给定父PID,您可以列出直接子项,例如:

wmic process where (ParentProcessId=2480) get Caption,ProcessId