如何使用Windows cmd / bat文件一次打开各种应用程序并关闭终端窗口?

时间:2012-11-08 02:11:24

标签: windows cmd

我正在使用它:

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文件中关闭它?

1 个答案:

答案 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 - 只需启动应用程序