请教一个批处理命令,批量、延迟开TXT文件中的网页,并带有暂停。高手来

2024-11-24 23:22:15
推荐回答(2个)
回答1:

ping 127.0.0.1 -n 5>nul
大概4秒
ping 127.0.0.1 -n 10>nul
大概8秒吧我都这么用的,挺好用

回答2:

set n=1
echo WScript.Sleep 5000>temps.vbs
::5000 = 5秒
for /f "delims=" %%u in (url.txt) do (set "a=%%u"&call :AAA)
del /f /q temps.vbs
:AAA
"%ProgramFiles%\Internet Explorer\iexplore.exe" "%a%"
set n+=1
start /wait temps.vbs
if %n%=30 set n=1&pause
goto :EOF