Barry McKenna
(Lurker)
2003-09-05 06:31 PM
opening IE automatically by login script

Hello,

I want to be able to open a IE window automatically displaying the corporate homepage using logon script. I have added the command Shell "c:\program files\Internet Explorer\iexplore.exe" into the login script. This works OK but then the login script stalls after the IE window opens. Why is this, is there a way to fix it or is there a better way of doing this?


Radimus
(KiX Supporter)
2003-09-05 06:32 PM
Re: opening IE automatically by login script

run "start www.kixtart.org"

Richie19Rich77
(Seasoned Scripter)
2003-09-05 06:34 PM
Re: opening IE automatically by login script

Use

code:
Run "c:\program files\Internet Explorer\iexplore.exe"

Shell will hang the script until the shell command has completed, run will run the command in a separte process but keep the main script running.


Kdyer
(KiX Supporter)
2003-09-06 07:08 AM
Re: opening IE automatically by login script

Try this -
code:
 $ie=READVALUE('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE','')
RUN $ie+' http://kixtart.org'
SLEEP 1

HTH,

Kent


LonkeroAdministrator
(KiX Master Guru)
2003-09-06 08:26 AM
Re: opening IE automatically by login script

even simpler way would be:
run 'explorer "http://our.corporate.site.in"'