64位应用程序启动32位进程
本文关键字:进程 32位 启动 应用程序 64位 | 更新日期: 2023-09-27 18:17:55
我正在用。net 4.0, c#编写一个64位应用程序。
在这个应用程序中,在某些时候,我需要使用以下代码启动另一个exe文件:
l_process.StartInfo.FileName = _sFullFilePath;
l_process.StartInfo.Verb = "Open";
l_process.StartInfo.CreateNoWindow = true;
l_process.StartInfo.Arguments = l_sParams;
l_process.Start();
现在,这个外部应用程序在32位环境(x86)下编译,我得到以下错误:
**The specified executable is not valid for this OS platform**
有可能这样做吗?如果是,我怎样才能从我的应用程序启动这个应用程序而没有问题呢?
通常,在64位机器上运行32位程序不需要额外的工作。
- 尝试单独运行32位程序。
- 阅读:http://www.techsupportalert.com/content/how-windows7-vista64-support-32bit-applications.htm