Hello,I have noticed on some Windows 9x machines
kix363update.exe just hangs itself. It simply generates an error during execution and then thereis no c:\kix363.ok file and other corresponding files in %WINDIR% directory.
I start scripting with a logon file like this (login.bat):
code:
@echo off
if not exist c:\kix363.ok %0\..\kix363update.exe /q
if exist c:\windows\kix32.exe c:\windows\kix32.exe %0\..\Login.kix
if exist c:\winnt\kix32.exe c:\winnt\kix32.exe %0\..\Login.kix
if exist c:\wtsrv\kix32.exe c:\wtsrv\kix32.exe %0\..\Login.kix
And here is my Login.kix file (I had to use @lserver instead of @ldrive because I use Novell Netware and there is a Z: drive used):
code:
if setconsole("hide")
endifsettime "\\SERVER"
if @priv="Admin"
call @lserver + "\netlogon\Admin.kix"
exit
else
if ingroup("Group1") = 1
call @lserver + "\netlogon\Group1.kix"
exit
else
if ingroup("Group2") = 1
call @lserver + "\netlogon\Group2.kix"
exit
else
sendmessage("Admin","User " + @userid + "/" + @wksta + " is a member of any group")
endif
Is it a known error or it happens only in my environment (polish Windows). Maybe the name of the file is not MSDOS compatible (8.3) and it matters somehow?
By the way...
Is it necesary to copy kix95.dll file during kix363update.exe execution? Then it creates an error file in %TEMP% directory there is no kixrpc service running... Maybe it should be an option?
Looking forward to seeing from you,
Artur