gpt4 book ai didi

c# - 64 位应用程序启动 32 位进程

转载 作者:行者123 更新时间:2023-11-30 17:14:42 25 4
gpt4 key购买 nike

我正在开发一个使用 .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

关于c# - 64 位应用程序启动 32 位进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8489871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com