Hi all

I am trying to have a kix logon script run an executable independently from
the script itself. Which means that the kix script should launch the .EXE
and then continue with the other lines of the script.

I have tried to use RUN and SHELL but

If I use RUN like in:

RUN C:\MYEXECUTABLE.EXE

the script launches the exe but the exe is closed as soon as the kix script
ends! I want the exe to remain running even after the script ends.

If I use SHELL like in:

SHELL "CMD /C C:\MYEXECUTABLE.EXE"

the exe launches but the script then stops waiting for the exe window to be
closed! I want the script to continue past the line that launches the
executable.

Is this possible??

Thanks a lot!!!

crivex