hmm, good point.....i'll try that.

also in my batch i'll run bginfo directly from the netlogon share
 Code:
If Exist %WINDIR%\BGInfo.bmp Del %WINDIR%\BGInfo.bmp
\\server\netlogon\bginfo\Bginfo.exe /timer:0 /silent /NOLICPROMPT \\server\NetLogon\bginfo\hostname.bgi



and my kix is this:
 Code:
$=SetOption("Explicit","ON")
Dim $sLocalDir	$sLocalDir="C:\BGInfo"

If Not Exist($sLocalDir) MD $sLocalDir EndIf
If Not Exist($sLocalDir+"\bginfo.exe") COPY @LSERVER+"\NETLOGON\bginfo\bginfo.exe" $sLocalDir EndIf
If Not Exist($sLocalDir+"\custom.bgi") COPY @LSERVER+"\NETLOGON\bginfo\custom.bgi" $sLocalDir EndIf

Run $sLocalDir+"\Bginfo.exe "+$sLocalDir+"\custom.bgi /timer:0 /silent /NOLICPROMPT /LOG:"+%TEMP%+"\bginfo.log"


to run bginfo directly from the server with kix is this the way?
 Code:
If Exist %WINDIR%\BGInfo.bmp Del %WINDIR%\BGInfo.bmp
RUN \\server\netlogon\bginfo\Bginfo.exe /timer:0 /silent /NOLICPROMPT \\server\NetLogon\bginfo\hostname.bgi


thanks all for help.