本文介绍了在 Windows 上查找父进程 ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定进程 ID &远程 Windows 主机上的命令行访问,如何找到其父级的 PID?
Given a process ID & command-line access on a remote Windows host, how can you find its parent's PID?
鉴于 Marc B 的回答,我们可以使用 WMIC(命令示例 在这里)并做这样的事情:
Given Marc B's answer, we can use WMIC (Command samples here) and do something like this:
wmic process where (processid=PROCID_HERE) get parentprocessid
推荐答案
C:> wmic process get processid,parentprocessid,executablepath|find "process id goes here"
这篇关于在 Windows 上查找父进程 ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!