从 32 位代码在 System32 中运行 64 位可执行文件

发布于 2024-12-07 15:01:21 字数 367 浏览 1 评论 0原文

我正在尝试从 32 位 C# 应用程序(在 64 位操作系统上)运行可执行文件,但我收到“系统找不到指定的文件”,可能是因为 C:\Windows 中不存在 wsqmcons.exe \SySWOW64。该文件确实存在于 System32 中。如果可能的话,从代码运行 wsqmcons.exe 的最佳方法是什么?

Process p = new Process();
p.StartInfo.Arguments = "-f";
p.StartInfo.FileName = @"C:\Windows\System32\wsqmcons.exe";
p.Start();
p.WaitForExit();
Verify.AreEqual(0, p.ExitCode);

I am trying to run an executable from a 32-bit C# app (on a 64-bit OS), but I’m getting “The system cannot find the file specified” probably because wsqmcons.exe does not exist in C:\Windows\SySWOW64. The file does exist in System32. What is the best way to run wsqmcons.exe from code, if possible?

Process p = new Process();
p.StartInfo.Arguments = "-f";
p.StartInfo.FileName = @"C:\Windows\System32\wsqmcons.exe";
p.Start();
p.WaitForExit();
Verify.AreEqual(0, p.ExitCode);

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

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

发布评论

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

评论(2

时间海 2024-12-14 15:01:21

您需要使用 Wow64DisableWow64FsRedirection 关闭 32 位进程上的文件系统重定向,然后使用 Wow64RevertWow64FsRedirection 重新启用它。

You will need to turn off the file system redirection on your 32 bit process with the Wow64DisableWow64FsRedirection and the re-enable it with Wow64RevertWow64FsRedirection.

凡间太子 2024-12-14 15:01:21

位于 %windir%\System32 下的 64 位可执行文件无法被
从 32 位进程启动,因为文件系统重定向器
将路径重定向到 %windir%\SysWOW64不要禁用重定向
完成此任务;使用 %windir%\Sysnative 代替。欲了解更多信息,
请参阅文件系统重定向.

引用自 http://msdn .microsoft.com/en-us/library/windows/desktop/aa384203%28v=vs.85%29.aspx

A 64-bit executable file located under %windir%\System32 cannot be
launched from a 32-bit process, because the file system redirector
redirects the path to %windir%\SysWOW64. Do not disable redirection to
accomplish this; use %windir%\Sysnative instead. For more information,
see File System Redirector.

Quote from http://msdn.microsoft.com/en-us/library/windows/desktop/aa384203%28v=vs.85%29.aspx

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