vbscript - Call https page via .vbs script fails ... why? -


here's script. tried executing ... nada. tried executing via task scheduler ... nada. if hit url below via ie works. ideas???

''//force script finish on error. on error resume next  ''//declare variables dim objrequest dim url  set objrequest = createobject("microsoft.xmlhttp")  ''//put url link appending variables. url = "https://myurlhere.com"  ''//open http request , pass url objrequest object objrequest.open "get", url , false  ''//send html request objrequest.send  ''//set object nothing set objrequest = nothing 

"in internet explorer 8, vbscript syntax not supported"

-- http://msdn.microsoft.com/en-us/library/ms535874%28vs.85%29.aspx

could problem?


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -