using System.Diagnostics;

Process.Start(path+"notepad.exe");


如果用xp,你可以

using System.Diagnostics;

Process.Start("c:\windows\system32\notepad.exe");


打开其它应用程序同理。