Web page download automation in vbscript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:15:27Z http://stackoverflow.com/feeds/question/546645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/546645/web-page-download-automation-in-vbscript 1 Web page download automation in vbscript deadprogrammer 2009-02-13T16:38:38Z 2009-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#546680 0 Answer by jheriko for Web page download automation in vbscript jheriko 2009-02-13T16:45:01Z 2009-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#546686 1 Answer by svinto for Web page download automation in vbscript svinto 2009-02-13T16:46:10Z 2009-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>