HI guys...

I've create a simple logon script that CALL another small scripts

code:
(...)
If Exist(@LSERVER + "\netlogon\kix\Identd.kix")
Call @LSERVER + "\netlogon\kix\Identd.kix"
EndIf
(...)

which launch a daemon on the target machine with the RUN command.

code:
 
(...)
:Run
Run (@LanRoot + "\daemon.exe")

:End
Sleep(2)
Exit

When this daemon starts a welcome message is displayed in the console window.

How can I prevent this?

(ps: no switch on the daemon for run in silent mode)

TNX

BYE