小编典典

从 C# 启动应用程序 (.EXE)?

all

如何使用 C# 启动应用程序?

要求:必须在Windows XPWindows
Vista
上工作。

我从 DinnerNow.net 采样器中看到了一个仅适用于 Windows Vista 的示例。


阅读 62

收藏
2022-08-05

共1个答案

小编典典

使用System.Diagnostics.Process.Start()方法。

查看这篇文章,了解如何使用它。

Process.Start("notepad", "readme.txt");

string winpath = Environment.GetEnvironmentVariable("windir");
string path = System.IO.Path.GetDirectoryName(
              System.Windows.Forms.Application.ExecutablePath);

Process.Start(winpath + @"\Microsoft.NET\Framework\v1.0.3705\Installutil.exe",
path + "\\MyService.exe");
2022-08-05