显示 AnyCPU 应用程序中的所有进程
我正在为任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到的答案是:
64位进程不支持。这就是我的代码总是抛出异常的原因。因此 64 位进程未列出。
I got the answer:
is not supported by 64-bit processes. This was the reason my code always threw an exception. So the 64bit-processes were not listed.
您是否有可能访问过时的字段?
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