批处理调用VBS批量下载文件代码如下,请自行更改添加下载的URL @echo off Setlocal EnableDelayedExpansion echo Set x= createObject(^"Microsoft.XMLHTTP^"):x.Open ^"GET^",LCase(WScript.Arguments(0)),0:x.Send():Set s = createObject(^"ADODB.Stream^"):s.Mode = 3:s.Type = 1:s.Open():s.Write(x.responseBody):s.SaveToFile LCase(WScript.Arguments(1)),2 >iget.vbs for %%a in ( www.xx.com/aaa.exe www.bb.com/ddd.jpg ) do ( set url=%%a set x=&call :down ) pause exit :down set /a x+=1 set /a y=x-1 if "!url:~-%x%,1!"=="/" ( echo 正在下载 !url! start iget.vbs !url! c:\!url:~-%y%! goto :eof ) goto :down