我正在使用它:
start /b cmd /c "C:\Windows\notepad.exe"
start /b cmd /c "C:\Program Files\Google\Chrome\Application\chrome.exe"
start /b cmd /c "C:\Program Files\Skype\Phone\Skype.exe"
exit
以上工作但保持提示/终端窗口打开。如何在最后一个应用程序打开后立即从bat / cmd文件中关闭它?
答案 0 :(得分:3)
请尝试以下方法:
C:
cd \Windows
start notepad.exe
cd "\Program Files\Google\Chrome\Application"
start chrome.exe
cd "\Program Files\Skype\Phone"
start Skype.exe
exit
可能是您的启动cmd - 只需启动应用程序