使用
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.NETframeworkv1.0.3705Installutil.exe",path + "\MyService.exe");


