显示 AnyCPU 应用程序中的所有进程

发布于 2024-11-10 14:38:43 字数 360 浏览 2 评论 0原文

我正在为任何 CPU 编写应用程序。当我在 64 位 PC 上运行以下命令时,它将不起作用:

System.Diagnostics.Process[] running = System.Diagnostics.Process.GetProcesses();
for (int i = 0; i < running.Length; i++){
    try{
        Console.WriteLine(running[i].MainModule.FileName);
    }
    catch (Exception ex){}
}

它仅显示阵列中正在运行的 32 位进程,因为它在 32 位模式下运行。有解决方法吗?

I am writing an application for any CPU. When I am running the following on a 64bit-PC it will not work:

System.Diagnostics.Process[] running = System.Diagnostics.Process.GetProcesses();
for (int i = 0; i < running.Length; i++){
    try{
        Console.WriteLine(running[i].MainModule.FileName);
    }
    catch (Exception ex){}
}

It only shows the 32bit-processes in the array running because it is running in the 32bit-mode. Is there a workaround for this?

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

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

发布评论

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

评论(2

不羁少年 2024-11-17 14:38:43

我得到的答案是:

running[i].MainModule.FileName

64位进程不支持。这就是我的代码总是抛出异常的原因。因此 64 位进程未列出。

I got the answer:

running[i].MainModule.FileName

is not supported by 64-bit processes. This was the reason my code always threw an exception. So the 64bit-processes were not listed.

泅渡 2024-11-17 14:38:43

您是否有可能访问过时的字段?

http://msdn.microsoft.com/en-us/netframework/aa569609

Is it possible that you are accessing obsolete fields?

http://msdn.microsoft.com/en-us/netframework/aa569609

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