Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Windows 上检索 cmd.exe 的 PID?
我正在尝试找出 cmd.exe 的 PID,就像在 Unix 中我可以使用“ps”命令一样,windows 应该等同于什么?
任务列表|找到“cmd.exe”
将始终返回带有 PID 的 cmd.exe 列表
如果您想知道特定终端的 PID,请从终端执行:-
wmic 进程获取父进程ID,名称|找到“WMIC”
WMIC.exe 11348
它应该返回父 PID,它始终是您的 cmd.exe 的 PID