有一個 想執行 一個 A.BAT
裡面會 執行 CMD
把 chrome.exe http://www.google.com
帶進去
我這這樣寫卻不行
cmd chrome.exe http://www.google.com
補上 chrome 絕對路徑也不行
只會出現 一個CMD視窗
為啥
可以使用 start
指定瀏覽器開啟url 並用 exit
關閉視窗
start chrome http://google.com
exit
cmd /c chrome.exe http://www.google.com
上面有人提到的 start
則是讓你叫出來的程式不會卡住 batch script 的執行,繼續往下做其他事情