Hi, i've been trying to build a script to auto login to a website, it works with igoogle. but it doesn't work on the website i've been trying it on. Any help would be greatly appreciated!
This is the error i get when not using the google website

Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))


Code:
        Dim ie
        ie = CreateObject("InternetExplorer.application")
        ie.Visible = True
        ie.navigate("https://accounts.google.com/ServiceLogin?service=ig&passive=true&continue=http://www.google.com/ig%3Fhl%3Den&followup=http://www.google.com/ig%3Fhl%3Den&cd=US&hl=en&nui=1&ltmpl=default")
        While ie.Busy

        End While




        ie.Document.forms(0).all("USER_ID").Value = "your name here"
        ie.Document.forms(0).all("Passwd").Value = "your password here"
        ie.Document.forms(0).submit()