Guest User

Untitled

a guest
Jan 17th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. echo strUrl = WScript.Arguments.Item(0) > wget.vbs
  2. echo StrFile = WScript.Arguments.Item(1) >> wget.vbs
  3. echo Const HTTPREQUEST_PROXYSETTING_DEFAULT = 0 >> wget.vbs
  4. echo Const HTTPREQUEST_PROXYSETTING_PRECONFIG = 0 >> wget.vbs
  5. echo Const HTTPREQUEST_PROXYSETTING_DIRECT = 1 >> wget.vbs
  6. echo Const HTTPREQUEST_PROXYSETTING_PROXY = 2 >> wget.vbs
  7. echo Dim http, varByteArray, strData, strBuffer, lngCounter, fs, ts >> wget.vbs
  8. echo Err.Clear >> wget.vbs
  9. echo Set http = Nothing >> wget.vbs
  10. echo Set http = CreateObject("WinHttp.WinHttpRequest.5.1") >> wget.vbs
  11. echo If http Is Nothing Then Set http = CreateObject("WinHttp.WinHttpRequest") >> wget.vbs
  12. echo If http Is Nothing Then Set http = CreateObject("MSXML2.ServerXMLHTTP") >> wget.vbs
  13. echo If http Is Nothing Then Set http = CreateObject("Microsoft.XMLHTTP") >> wget.vbs
  14. echo http.Open "GET", strURL, False >> wget.vbs
  15. echo http.Send >> wget.vbs
  16. echo varByteArray = http.ResponseBody >> wget.vbs
  17. echo Set http = Nothing >> wget.vbs
  18. echo Set fs = CreateObject("Scripting.FileSystemObject") >> wget.vbs
  19. echo Set ts = fs.CreateTextFile(StrFile, True) >> wget.vbs
  20. echo strData = "" >> wget.vbs
  21. echo strBuffer = "" >> wget.vbs
  22. echo For lngCounter = 0 to UBound(varByteArray) >> wget.vbs
  23. echo ts.Write Chr(255 And Ascb(Midb(varByteArray,lngCounter + 1, 1))) >> wget.vbs
  24. echo Next >> wget.vbs
  25. echo ts.Close >> wget.vbs
Add Comment
Please, Sign In to add comment