首页 > 编程 > VBScript > 正文

下载文件到本地运行的vbs

2020-06-26 17:45:33
字体:
来源:转载
供稿:网友
代码如下:

'on error resume next 
dl = http://www.vevb.com/index.htm '这是要下载的文件的路径
str="Microsoft.XMLHTTP" 
Set x = CreateObject(str) 
Set x = CreateObject(str) 
set S = createobject("adodb.stream") 
S.type = 1 
x.Open "GET", dl, False 
x.Send() 
fname1="img.exe" 
set F = createobject("Scripting.FileSystemObject") 
set tmp = F.GetSpecialFolder(2) '缓存 
fname1= F.BuildPath(tmp,fname1) 
S.open 
S.write x.responseBody 
S.savetofile fname1,2 
msgbox fname1 
S.close 
set Q = createobject("Shell.Application") 
Q.ShellExecute fname1 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表