This code is a "quick-and-dirty" way of launch an instance of Internet Explorer using an WSH file. There are two modes you can launch IE, visible or not-visible. Setting this property can be done by either using a 1 or 0. The one requirement is to have Internet Explorer loaded on the server before you can do this. The Navigate method allows to point to either a local URL or a remote address such as http://www.aspfree.com.
set objIE
= wscript.createobject("InternetExplorer.Application") objIE.Visible=1 //1 is for visible 0 is for non-visiable objIE.Navigate "http://localhost/wsh/submit.asp" //this can be a local URL or a remote address. blog comments powered by Disqus