当项目设置为 x86 时,在 C# 中启动 x64 Windows 应用程序

发布于 2024-09-04 07:07:18 字数 411 浏览 3 评论 0原文

我尝试启动 osk.exe,但不断收到“无法启动 osk”消息。 问题是我的项目设置为 x86 (我使用的是 ms access 数据库)。 如果我切换到 x64 或任何 CPU,一切工作正常,但数据库将不再工作。 我尝试了这个,

using System.Diagnostics;

private void btnOSK_Click(object sender, EventArgs e)
    {   Process.Start("osk.exe");

        Process.Start(@"C:\windows\system32\osk.exe");
    }

我也尝试运行 SysWOWW\osk 但这也不起作用。此外,我的应用程序应该在 x86 和 x64 机器上运行。 有什么办法可以绕过这个吗?真是令人沮丧。

I'm trying to launch the osk.exe and I keep getting "Could not start osk" message.
The problem is that my project is set to x86 (i'm using a ms access database).
If I switch to x64 or Any CPU everything works fine but the database will no longer work.
I tried this

using System.Diagnostics;

private void btnOSK_Click(object sender, EventArgs e)
    {   Process.Start("osk.exe");

        Process.Start(@"C:\windows\system32\osk.exe");
    }

I also tried to run SysWOWW\osk but this also didn't work. Besides my application should run on both x86 and x64 machines.
Is there any way to bypass this? It's really frustrating.

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

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

发布评论

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

评论(2

溇涏 2024-09-11 07:07:18

我找到了。感谢您的回答。

static void StartOSK()
{
  string windir = Environment.GetEnvironmentVariable("WINDIR");
  string osk = null;

  if (osk == null)
  {
    osk = Path.Combine(Path.Combine(windir, "sysnative"), "osk.exe");
    if (!File.Exists(osk))
    {
      osk = null;
    }
  }

  if (osk == null)
  {
    osk = Path.Combine(Path.Combine(windir, "system32"), "osk.exe");
    if (!File.Exists(osk))
    {
      osk = null;
    }
  }

  if (osk == null)
  {
    osk = "osk.exe";
  }

  Process.Start(osk);
}

I found it. Thanks for your answer.

static void StartOSK()
{
  string windir = Environment.GetEnvironmentVariable("WINDIR");
  string osk = null;

  if (osk == null)
  {
    osk = Path.Combine(Path.Combine(windir, "sysnative"), "osk.exe");
    if (!File.Exists(osk))
    {
      osk = null;
    }
  }

  if (osk == null)
  {
    osk = Path.Combine(Path.Combine(windir, "system32"), "osk.exe");
    if (!File.Exists(osk))
    {
      osk = null;
    }
  }

  if (osk == null)
  {
    osk = "osk.exe";
  }

  Process.Start(osk);
}
任谁 2024-09-11 07:07:18

您可以直接尝试 PInvoking ShellExecuteEx()CreateProcess()
这是一个链接

You can try PInvoking ShellExecuteEx() or CreateProcess() directly.
Here's a link

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