前段時間在工做的時候須要用到,百度了很久後找,但是找到了又但願調用的時候窗體不要顯示出來。this
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;spa
這兩句能隱藏掉CMD窗口code
最後的代碼以下:orm
try { string str = System.Windows.Forms.Application.StartupPath + "\\1.bat"; string strDirPath = System.IO.Path.GetDirectoryName(str); string strFilePath = System.IO.Path.GetFileName(str); string targetDir = string.Format(strDirPath);//this is where mybatch.bat lies proc = new Process(); proc.StartInfo.WorkingDirectory = targetDir; proc.StartInfo.FileName = strFilePath; proc.StartInfo.CreateNoWindow = true; proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; proc.Start(); proc.WaitForExit(); MessageBox.Show("執行成功"); } catch (Exception ex) { MessageBox.Show("執行失敗 錯誤緣由:" + ex.Message); }