如何使用 C# 启动应用程序?
要求:必须在Windows XP和Windows Vista上工作。
我从 DinnerNow.net 采样器中看到了一个仅适用于 Windows Vista 的示例。
使用System.Diagnostics.Process.Start()方法。
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");