嗨,在Windows 10中的一些应用程序,如计算器,如果我运行calc.exe它会生成calculator.exe并立即退出cal.exe.my要求获取此子进程的主窗口句柄(calculator.exe) 为了从父进程获取子进程,我尝试了关注poweshell脚本。 function Find-ChildProcess { PARAM($ ID = $ PID)
Get-WmiObject -Class Win32_Process -Filter" ParentProcessID = $ ID" | Select-Object -Property ProcessName,ProcessID,CommandLine }
这与像记事本这样的应用程序很少醒来,但我没有得到计算器和Internet Explorer等过程的子进程。 谢谢