当前位置:首页>软件中心>软件设置>0-120循环运行 bat

0-120循环运行 bat

介绍

    @echo off

    set n=0

    :abc

    call .\%n%.vbs        

    set /a n+=1

    if %n%==121 exit

    goto abc