批次:
@echo off
tasklist /FI "IMAGENAME eq custom.bin" 2>NUL | find /I /N "custom.bin">NUL
if "%ERRORLEVEL%"=="0" goto mycode
goto quite
:mycode
@RD /S /Q "customfolder"
:quite
exit
现在我需要让它像标题一样一步一步地工作:
答案 0 :(得分:0)
我认为你正试图做这样的事情:
@echo off
start /wait custom.bin
echo custom.bin has finished running
pause
这将启动custom.bin,并等待它关闭,然后继续运行批处理文件的其余部分