try{Process pro=new Process();pro.StartInfo.UseShellExecute=true;pro.StartInfo.FileName=@"c:\1.bat";pro.StartInfo.CreateNoWindow=true;pro.Start();}catch(Exception ex){MessageBox.Show(ex.Message);}