终止使用spawnv创建的进程

发布于 2024-07-20 12:50:47 字数 435 浏览 5 评论 0原文

我对流程完全没有经验,但我的设置应该非常简单。 我所做的就是生成一个像这样的进程:

int spawnId = spawnv(_P_NOWAIT,"wgetlocal.exe",my_env);

现在,我想做的是在一段时间后终止这个程序。 然而,当调用taskkill /PID [number] /F时,返回的spawnId并不是我所需要的。

我尝试过使用 otherId2 = GetWindowThreadProcessId((HWND)spawnId,OUT otherId1) 但同样,otherId1otherId2 都没有给出正确的 PID。

如果有人能帮我解决他的问题,我将不胜感激。 问候, 罗尔德

I'm not experienced with processes at all, but what I'm set to to should be really simple.
All I do is spawn a process like this:

int spawnId = spawnv(_P_NOWAIT,"wgetlocal.exe",my_env);

Now, what I want to do is kill this program after a certain time. However, the returned spawnId is not what I need when for instance calling taskkill /PID [number] /F.

I've tried using otherId2 = GetWindowThreadProcessId((HWND)spawnId,OUT otherId1) but again, neither otherId1 or otherId2 give the correct PID.

If anyone could help me witht his, I'd be vary thankfull.
Regards,
Roald

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

﹏半生如梦愿梦如真 2024-07-27 12:50:47

来自 MSDN

异步 ​​_spawnv_wspawnv(为模式指定的 _P_NOWAIT_P_NOWAITO)的返回值是进程句柄。

当您有进程句柄时,可以使用 TerminateProcess

手柄类型不可互换。 您不能将进程句柄类型转换为 HWND 并使其突然成为窗口句柄。

From MSDN:

The return value from an asynchronous _spawnv or _wspawnv (_P_NOWAIT or _P_NOWAITO specified for mode) is the process handle.

When you have a process handle, you can use TerminateProcess.

Types of handles are not interchangeable. You cannot type-cast a process handle to HWND and have it suddenly be a window handle.

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