Win32确定进程ID

发布于 2024-08-20 11:20:00 字数 188 浏览 3 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

笑梦风尘 2024-08-27 11:20:00

您永远无法确定进程将获得什么 PID。您只能确定进程在启动进程后获得的 PID。

在 .Net 中,您可以执行以下操作。

var newProcess = Process.Start(someExeFile);
var id = newProcess.Id

在 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

var newProcess = Process.Start(someExeFile);
var id = newProcess.Id

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)

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