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 Tasklist ではコマンドですが、Windows 7 で実行中のプロセスとその子プロセスを一覧表示する方法
以下を使用して、PID と親 PID を使用してプロセスのリストを取得できます。
wmic process get Caption,ParentProcessId,ProcessId
親の PID を指定すると、次のような直接の子を一覧表示できます。
wmic process where (ParentProcessId=2480) get Caption,ProcessId