@echo off
:loop
call:sleep 30
::调用方法call:sleep [毫秒] (1秒=1000毫秒)
curl https://qq.com
::pause
goto loop
 
:sleep
set tmp="%temp%\tmp.vbs"
echo wscript.sleep %1>%tmp%&%tmp%&del %tmp%
goto :eof

 

相关文章:

  • 2021-08-09
  • 2021-08-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-19
  • 2021-07-15
猜你喜欢
  • 2021-06-28
  • 2021-10-16
  • 2021-08-26
  • 2022-12-23
  • 2021-11-02
  • 2021-05-20
  • 2022-12-23
相关资源
相似解决方案