Hello againJack, I think wwood needs hand holding!
No you do not need a special editor, Kixtart code can be written using notepad (just like a batch file,) INSTEAD you save the file as a .kix or a .scr file extension.
E.G.
login.bat = a dos (or script) batch file
login.kix = a Kixtart script
Are you running NT servers?
Have you set up the KXRPC service on your NT PDC & BDC ?
Have you copied the required Kixtart files over to your Win9x clients as per the Kixtart manual?
How to install Kixtart as a service on your NT servers and the "code" Kixtart uses and what files are required on Win9x systems can be found in the manual/document found in the downloadable file found here:
http://www.kixtart.to/script/bin/kix32-362.zip
Here's more help.
In usermanager on your NT PDC ensure your users login script line is login.bat (only an example!)
Within login.bat you do something like:
rem The following code copies the required kixtart files over to Win9x clients on login
IF "%OS%" = "Windows_NT" GOTO WinNT
REM * If can't detect WinNT, assume system is Win95/98
XCOPY %0\..\KIX32.EXE %WINDIR%\SYSTEM\ /D /H /I /R /V > NUL
XCOPY %0\..\KX16.DLL %WINDIR%\SYSTEM\ /D /H /I /R /V > NUL
XCOPY %0\..\KX32.DLL %WINDIR%\SYSTEM\ /D /H /I /R /V > NUL
XCOPY %0\..\KX95.DLL %WINDIR%\SYSTEM\ /D /H /I /R /V > NUL
ECHO Finished Verifying/Upating Script Installation.
GOTO Runscript
:WinNT
XCOPY %0\..\KIX32.EXE %WINDIR%\SYSTEM32\ /D /H /I /R /V > NUL
ECHO Finished Verifying/Upating Script Installation.
GOTO Runscript
:RunScript
ECHO OFF
CLS
ECHO Mapping NT Directories Please Wait...
%0\..\kix32.exe kixlogin.kix
EXIT
At the bottom of the login.bat you can see a reference to a .kix file. This is the file where you would do your mappings etc. using Kixtart code.
Oh, ensure you have the required Kixtart files in the netlogon directory of your PDC & BDC so they can be copied over to the Win9x clients.
I hope this helps.
Rgds
Don