从 ShellExecute 获取 PID

发布于 2024-12-07 16:36:48 字数 578 浏览 0 评论 0原文

我正在从 ShellExecuteEx 启动一个进程,我确实需要获取 ProcessID(这是此类要求的一部分)。

不知何故,所有重要的 SHELLEXECUTEINFO 都返回 null。 例如,如果我使用这段代码:

exInfo.lpVerb = "open";
exInfo.lpFile = "C:\\Windows\\system32\\cmd.exe";
exInfo.nShow  = 5;

ShellExecuteExA(exInfo);

它启动了 CMD.exe。但现在我需要获取它的PID。 exInfo.hwnd 返回 0exInfo.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弥繁 2024-12-14 16:36:48

您需要在 exInfo.fMask 中设置一个标志(SEE_MASK_NOCLOSEPROCESS)

You need to set a flag (SEE_MASK_NOCLOSEPROCESS) in exInfo.fMask

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文