Web page download automation in vbscript - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:15:27Zhttp://stackoverflow.com/feeds/question/546645http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/546645/web-page-download-automation-in-vbscript1Web page download automation in vbscriptdeadprogrammer2009-02-13T16:38:38Z2009-02-13T16:46:10Z
<p>How would you automate logging into a website and downloading a page using vbscript?</p>
http://stackoverflow.com/questions/546645/web-page-download-automation-in-vbscript/546680#5466800Answer by jheriko for Web page download automation in vbscriptjheriko2009-02-13T16:45:01Z2009-02-13T16:45:01Z<p>As a quick and dirty solution, you could use a Shell object with SendKeys and Run as <a href="http://computerperformance.co.uk/ezine/ezine26.htm" rel="nofollow">demonstrated here</a>. These functions are quite powerful for those situations where you just can't the right object or library to use...</p>
http://stackoverflow.com/questions/546645/web-page-download-automation-in-vbscript/546686#5466861Answer by svinto for Web page download automation in vbscriptsvinto2009-02-13T16:46:10Z2009-02-13T16:46:10Z<p>Using the MSXML.XMLHTTP-object to first do a POST to login and then add the cookie-headers to a GET request.</p>