从 ShellExecute 获取 PID
我正在从 ShellExecuteEx 启动一个进程,我确实需要获取 ProcessID(这是此类要求的一部分)。
不知何故,所有重要的 SHELLEXECUTEINFO
都返回 null。 例如,如果我使用这段代码:
exInfo.lpVerb = "open";
exInfo.lpFile = "C:\\Windows\\system32\\cmd.exe";
exInfo.nShow = 5;
ShellExecuteExA(exInfo);
它启动了 CMD.exe。但现在我需要获取它的PID。 exInfo.hwnd
返回 0
,exInfo.hProcess
返回 null
。 这是正常行为吗?
我真的不想诉诸使用 CreateProcess(),因为我的函数还应该能够启动诸如“C:\doc1.docx”之类的文档。这只是一种方法,我无法预测将要启动的内容(因此我无法事先知道窗口标题/类名,从那里获取 hWnd 然后获取 PID)。
有人可以指出我的错误吗?谢谢。
I am launching a process from ShellExecuteEx, and I really need to get the ProcessID (It's part of the requirement of this class).
Somehow all the important SHELLEXECUTEINFO
returns null.
So for example if I use this code:
exInfo.lpVerb = "open";
exInfo.lpFile = "C:\\Windows\\system32\\cmd.exe";
exInfo.nShow = 5;
ShellExecuteExA(exInfo);
It launched CMD.exe. But now I need to get it's PID.exInfo.hwnd
is returning 0
, and exInfo.hProcess
is returning null
.
Is this normal behaviour?
I don't really want to resort to using CreateProcess(), because my function should also be able to launch documents like "C:\doc1.docx". This is just a method, in which I cannot predict what is going to be launched (So I cannot know the window title/classname from beforehand, get the hWnd from there and then get the PID).
Could somebody kindly point out my mistake? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 exInfo.fMask 中设置一个标志(SEE_MASK_NOCLOSEPROCESS)
You need to set a flag (SEE_MASK_NOCLOSEPROCESS) in exInfo.fMask