启动cmd,运行exe,程序结束后运行命令暂停,然后退出
Start cmd, run exe and after the program ends run command pause and then exit
我如何打开一个新的命令提示符和 运行 在其中一个 exe 程序 (exe) 结束后 运行 命令 pause
然后 exit
Exe 是 运行宁的:
start cmd /k bla.exe
bla.exe完成后,我想运行一个暂停命令。我试过了:
start cmd /k bla.exe & pause
但在初始控制台中暂停 运行ning。
我该如何解决这个问题?
解决方法是:
start "titel" cmd /k "bla.exe & pause & exit"
我如何打开一个新的命令提示符和 运行 在其中一个 exe 程序 (exe) 结束后 运行 命令 pause
然后 exit
Exe 是 运行宁的:
start cmd /k bla.exe
bla.exe完成后,我想运行一个暂停命令。我试过了:
start cmd /k bla.exe & pause
但在初始控制台中暂停 运行ning。
我该如何解决这个问题?
解决方法是:
start "titel" cmd /k "bla.exe & pause & exit"