Mar17Written by:R Teachout
3/17/2007 2:09 PM 
Simple 4 line script excellent for scheduled tasks to open a webpage to run some automated process (such as admin processing)
Just save the following in a txt file with a vbs extention. You can then setup a scheduled task to run this script when needed.
Set objXMLHttp = Wscript.CreateObject("Microsoft.XMLHTTP")
objXMLHttp.Open "GET","http://www.domain.com/page.asp",false
objXMLHttp.send
Set objXMLHttp = nothing
Tags: