Win32确定进程ID
我想在 Win32 .NET 中创建一个进程,我可以为操作系统确定应用程序将获得哪个 PID 吗?
更新:
1)我问这个问题是因为我有一个问题,我有2个.NET应用程序(相同的),每个应用程序都有参数ID,并且我想使用脚本(使用参数)来决定哪个就是那个并获取它的 PID 2)我想从外部而不是从.NET进程知道它。我需要一个脚本
I want to create a process in Win32 .NET can I determine FOR the OS which PID the application will get ?
Update:
1) I am asking it because I have a problem in which I have 2 .NET application (the same ones) that I have each one of them got parameter ID and I want using a script (using the parameter) to decide which is the one and get it's PID
2) I want to know it from out side not from the .NET Process. I need for a script
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您永远无法确定进程将获得什么 PID。您只能确定进程在启动进程后获得的 PID。
在 .Net 中,您可以执行以下操作。
在 Win32 中,CreateProcess 函数将返回一个 PROCESS_INFORMATION 结构作为函数的输出参数。它有新的 PID 作为其成员之一 (dwProcessId)
You can never determine what PID a process will get. You can only determine what PID a process did get after you start the process.
In .Net you can do the following
In Win32 the CreateProcess function will return an
PROCESS_INFORMATION
struct as an out parameter of the function. It has the new PID as one of it's members (dwProcessId)