64位应用程序启动32位进程

我正在研究用.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位程序不需要额外的工作。

  1. 尝试单独运行32位程序。
  2. 阅读: http : //www.techsupportalert.com/content/how-windows7-vista64-support-32bit-applications.htm
Interesting Posts