Starting to URLs in separate IE windows from logon script

  • Thread starter Thread starter Robert Leithe
  • Start date Start date
R

Robert Leithe

Hi,

I have two links my users are supposed to have opened for
them via the logon script.

If I simply call the URL's like this:
LOGON SCRIPT SAMPLE 1
link1.url
link2.url

The second link replaces the first one in the same browser
window.

If I try this:
LOGON SCRIPT SAMPLE 2:
"C:\Program Files\Internet Explorer\iexplore.exe"
http://address1
"C:\Program Files\Internet Explorer\iexplore.exe"
http://address2

The first link opens, and the logon scripts pauses until
this window is closed and then continues with the next
link.

Any ideas?

Sincerely
Robert Leithe
 
1. Change setting in IE's Options to not Reuse Windows When Launching Shortcuts
2. Use Start which means it will be treated as a windows command line.

start iexplore www.microsoft.com
 
Back
Top