Okay I took the SeaLeopard advise and start small
Here is a simple Kixtart script and the batch file to run code.
Kixtart Script:
code:
SETCONSOLE("HIDE")
;DRIVE P: IS LISTED IN EACH GRUOP
MAPDRIVE ("P:",JOSMITH1,"JO SMITH & ASSOCIATES\PUBLIC")
and here is the batch file that runs it
Batch file:
code:
@echo off
CLS
If EXIST %WINDIR%\SYSTEM32\KIX32.EXE GOTO RUNSCRIPTS
XCOPY \\JOSMITH1\KIXTART\KIX32.EXE %WINDIR%\SYSTEM32\ /D/H/I/R/V > NUL
GOTO RUNSCRIPTS
:RUNSCRIPTS
ECHO LOADING LOGON SCRIPTS, PLEASE WAIT........
%WINDIR%\SYSTEM32\KIX32.EXE \\JOSMITH1\KIXTART\TESTLOGON.KIX
I ran a debug on my kixtart script and received an error msg. "Error: Failed to find/open script!"
I put the script in the Netlogon file on our server. I have set the permission on the folder to EVERYONE, everyone is in the same domain group "JOSMITHINSURANCE.COM" and everyone is setup to be an administrator on their machine. So what have I done wrong?