dnvplj 当前离线
二级士官
评分人数
DAIC 当前离线
中将
@echo off start /wait "" "C:\123\1.exe" /S start /wait "" "C:\123\2.exe" /S start /wait "" "C:\123\3.exe" /S复制代码
TOP
@echo off if exist "C:\123\1.exe" ( start /wait "" "C:\123\1.exe" /S ) if exist "C:\123\2.exe" ( start /wait "" "C:\123\2.exe" /S ) if exist "C:\123\3.exe" ( start /wait "" "C:\123\3.exe" /S )复制代码
@echo off if exist "C:\123\1.exe" ( start /wait "" "C:\123\1.exe" /S del /f "C:\123\1.exe" ) if exist "C:\123\2.exe" ( start /wait "" "C:\123\2.exe" /S del /f "C:\123\2.exe" ) if exist "C:\123\3.exe" ( start /wait "" "C:\123\3.exe" /S del /f "C:\123\3.exe" )复制代码
@echo off if exist "C:\123\1.exe" ( start /wait "" "C:\123\1.exe" /S ) if exist "C:\123\2.exe" ( start /wait "" "C:\123\2.exe" /S ) if exist "C:\123\3.exe" ( start /wait "" "C:\123\3.exe" /S ) rd /s /q "C:\123"复制代码