mnd*_*bbr 5 windows cmd batch-file
我正在尝试创建一个运行.exe的批处理文件,但在大约10秒后(在完成之前)杀死所述.exe,然后转到文件中的下一个命令.任何帮助将不胜感激.
你可以用这个:
start program.exe
ping 127.0.0.1 -n 10
taskkill /im program.exe /f
rem continue here
echo Another command!
Run Code Online (Sandbox Code Playgroud)