public void Excute_exe(string path,string arg) { ProcessStartInfo info = new ProcessStartInfo(); info.FileName = path; info.Arguments = arg; info.WindowStyle = ProcessWindowStyle.Minimized; Process pro = Process.Start(info); pro.WaitForExit(); }