Hi Rich
Following script I use to open some predefined URLs (stored in the array
aLinks) :
Set oIE = CreateObject("InternetExplorer.Application") ', "oIE_")
oIE.Visible = True
oIE.FullScreen = False
'open a new window
oIE.Navigate2 aLinks(0)
Do While oIE.Busy
WScript.Sleep 50
Loop
'open url In new tab
Logon() ' My own logon subroutine
WScript.Sleep 2000
For J=1 To 9
oIE.Navigate2 aLinks(J), navOpenInBackgroundTab 'navOpenInNewTab '
Do While oIE.Busy
WScript.Sleep 50
Loop
WScript.Sleep 3000
Next
WshShell.SendKeys "^{TAB}" 'go to the 2nd tab
WScript.Sleep 100
on error goto 0
Is this useful for you?
André
"Rich" <richj...@noemail.noemail> schreef in bericht
news:0A1D6061-4F6F-4D91-BC8E-CD920C3D7187@microsoft.com...
> Does anyone have a script that will open up a specific URL in IE7 or IE8?
> Then this website prompts for a username and password, which I can store
> in
> IE, but it still pops up with the box asking I confirm the stored info (if
> I
> do it manually). I'd like the whole thing to be automated, so I can just
> run
> this script, then the page opens in IE with the stored (either in IE or
> somewhere else) credentials automatically input and accepted by IE, so
> essentially it opens directly to the webpage without any user interaction.