I followed the link for that logon.bat for 9X clients. It works fine if I REM out this SET KIXVER=KIXTART.412 line that always fails. It is looing for a file by that name and it doesn't exist. I haven't gotten the chance to execute it on a 9x client yet. I will be very shortly.
Also for that desktop shortcut creation, I noticed some people stating that they didn't like the idea of actually copying the kix32.exe to the client so I modified the shortcut to point to it in that client shortcut directory so if I update the version it gets updated only one place and I won't have to worry about several copies of kix32.exe everywhere. I did that like this:
code:
;MD c:\Kixscripts
;If NOT Exist('c:\Kixscripts\kix32.exe')
;Copy '\\sussex1\netlogon\Client Shortcut\kix32.exe' 'c:\Kixscripts'
;EndIf
;If NOT Exist('c:\Kixscripts\My Computer Info.kix')
;Copy '\\sussex1\netlogon\Client Shortcut\My Computer Information.kix' 'c:\Kixscripts'
;EndIf
$desktop = ReadValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","Desktop")
If NOT Exist('$desktop\My Computer Information.lnk')
Copy '\\sussex1\netlogon\Client Shortcut\My Computer Information.lnk' '$desktop'
EndIf
Of course I also edited the shortcuts to the sussex1 server so it wouldn't try to look locally. So in essence I left the kix32.exe and the my computer information.kix scripts in the netlogon folder so there is only 1 copy.
[ 24. February 2003, 17:43: Message edited by: DJ Ballistic ]