CMD 打开 2 个程序然后关闭第一个程序并终止另一个

CMD 打开 2 个程序然后关闭第一个程序并终止另一个

我有两个需要同时运行的 exe 文件,当第一个文件关闭时,也关闭另一个。

start programA.exe
start programB.exe

onclose(programA.exe)
taskkill /im programB.exe

不起作用。只是为了更容易理解。

答案1

start notepad.exe
start /wait calc.exe
echo wait until calc.exe is finished
echo then kill notepad.exe
taskkill notepad.exe

注意:如果(在此示例中)记事本的多个实例正在运行,则可能会关闭错误的实例。

相关内容