Just FYI- To save time and effort on copying the KIXTART files on each 9x system. You can call the KIXTART executable from a batchfile as long as yo u have all the appropriate files in the NETLOGON share on the Domain Controllers you're logging into.

Code:
%0\..\wKix32.exe kix.script

For multiple OS's executing KIXTART.

Rem Detect OS (NT or other)
if (%OS%) == (Windows_NT) goto NT_XP

:9x
%0\..\wKix32.exe kix.script
goto end

:NT_XP
wkix32.exe kix.script
:end