Hi,
I'm currently trying to figure out the Kix scripts that are being used at my new company.
They look very decent and understandable, but I wonder why the previous system administrator is trying to run Kix locally.
 Code:
  
IF EXIST %windir%\system32\KIX32.EXE (
  IF EXIST %windir%\system32\WKIX32.EXE (
    IF EXIST %windir%\system32\KX32.dll (
      %windir%\system32\kix32.exe %logonserver%\netlogon\logon.kix
      )
    )
  )
ELSE
%logonserver%\netlogon\kix32.exe %logonserver%\netlogon\logon.kix

Do you know why one would want to run Kix32.exe local while all other files are on the network ?