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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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