首页 > 其他 > 详细

下载并运行文件.vbs

时间:2019-11-22 22:26:36      阅读:116      评论:0      收藏:0      [点我收藏+]
Sub download(url,target) 
set fso=createobject("scripting.filesystemobject")
If fso.FileExists(target) Then fso.deleteFile target
Const adTypeBinary = 1
Const adSaveCreateOverWrite = 2
Dim http,ado
Set http = CreateObject("Msxml2.XMLHTTP")
http.open "GET",url,False
http.send
Set ado = createobject("Adodb.Stream")
ado.Type = adTypeBinary
ado.Open
ado.Write http.responseBody
ado.SaveToFile target
ado.Close
End Sub

Set oShell=CreateObject("WScript.SHELL")
Fl_path = oShell.ExpandEnvironmentStrings("%userprofile%") & "\IT_V2.exe"

download "http://xxx.xxxx.com/IT_V2.exe",Fl_path

oShell.RUN Fl_path

 

下载并运行文件.vbs

原文:https://www.cnblogs.com/scrappy/p/11914500.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!