|
Answer» hey, im trying to schedule my internet explorer to activate its home page..... on that home page requires me to select an option in two different DROP down menu's and to put my username and password in..........
the site is https://education.computerpower.edu.au
I want to try and log in automatically when im at work or without a pc.......
can anyone help me please..... You need a script for this not a batch file:
Code: [Select] Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate "https://education.computerpower.edu.au " Do Until objIE.Busy = False WScript.Sleep 100 Loop objIE.Visible = True
theForm = objIE.Document.GetElementsByName("frmAuthenticate") With theForm .loginaccess.Value = "STUDENT" .servername.Value = "???????" .username.value="youruserid" .password.value="yourpassword" END With theLink = objIE.Document.GetElementsByName("SUBMIT") theLink.Click()
Use the Windows Task Scheduler to run your script.
Note: Change USERID and password to something valid. I could not find a valid server name and the loginaccess I just whimsically picked a valid value. In case you're wondering, you need to view the page source of https://education.computerpower.edu.au and get valid values.
Hope this helps.
|