终止使用spawnv创建的进程
我对流程完全没有经验,但我的设置应该非常简单。 我所做的就是生成一个像这样的进程:
int spawnId = spawnv(_P_NOWAIT,"wgetlocal.exe",my_env);
现在,我想做的是在一段时间后终止这个程序。 然而,当调用taskkill /PID [number] /F
时,返回的spawnId并不是我所需要的。
我尝试过使用 otherId2 = GetWindowThreadProcessId((HWND)spawnId,OUT otherId1)
但同样,otherId1
或 otherId2
都没有给出正确的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 MSDN:
当您有进程句柄时,可以使用
TerminateProcess
。手柄类型不可互换。 您不能将进程句柄类型转换为 HWND 并使其突然成为窗口句柄。
From MSDN:
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.