shangxiaoqi 当前离线
列兵
随风 当前离线
荣誉版主
@echo off for %%a in (*.html) do call :loop "%%a" exit :loop set /a n+=1,n=n%%6 if %n% equ 0 ( ping/n 3 127.0>nul taskkill /f /im theworld.exe goto :EOF ) start "" %1 goto loop复制代码
TOP
jcy0307 当前离线
六级士官
@echo off setlocal enabledelayedexpansion set a=0 for %%i in (*.html) do ( set /a a+=1 start %%i if "!a!"=="5" ping -n 3 127.1>nul & taskkill /f /im IEXPLORE.EXE >nul & set a=0 ) pause复制代码