we have been using kixtart for some time now without any problems. I added the posted script to the existing script on Friday. I can't very well only have that part of the script run as it is performing alot more for drive mappings and such for the entire company.

Here is the script in it's entirety.

 Code:
;Shell "regedit /s URLAllowList.reg"
;Shell "regedit /s drives.reg"
;Shell "regedit /s TCPKeepAlive.reg"
;shell "drive.bat"
;shell  "\\dfw-file01\software$\Microsoft\Office_2007_Compatibility\2k7compat.bat"

$DIR = @HOMESHR + "\" + @USERID

IF INGROUP("Company (Dallas)")
	use k: "\\dfw-file01\company" /persistent
	use m: $DIR /persistent
;        shell "dallas_office.bat"
ENDIF

IF INGROUP("Renre\Company (SavannahRe)")
	use k: /DEL
	use k: "\\sav-fp01\company" /persistent
	use l: "\\sav-fp01\loran" /persistent
	use m: $DIR /persistent
	use s: "\\sav-fp01\software$" /persistent
;	shell "savre_office.bat"
	copy l:\loran.bat "%Userprofile%\desktop"
ENDIF

;copy "K:\renre screensaver.scr" %SystemRoot%\system32

IF INGROUP("DFW-MIS")
	use s: /DEL
	use s: "\\dfw-file01\software$" /persistent
ENDIF

IF INGROUP("DFW-FRS")
	use R: "\\dfw-frs\reinprod" /persistent
	use T: "\\dfw-frs\reintest" /persistent
ENDIF

IF INGROUP("DFW-GPC")
	use H: "\\dfw-file01\Renre$" /persistent
ENDIF

IF INGROUP("SAV-GPC")
	use H: "\\sav-fp01\Renre$" /persistent
ENDIF

IF INGROUP("DFW-FREEDOM")
	use i: "\\dfw-app01\freedom" /persistent
ENDIF

IF INGROUP("DFW-ACCOUNTING")
        use u: /DEL
	use n: /DEL
        use n: "\\dfw-epicor\d" /persistent
        
ENDIF

IF INGROUP("DFW-AMBEST")
        copy "K:\DFW-APP01.rdp" "%Userprofile%\desktop"
ENDIF

IF INGROUP("DFW-NEON")
	use l: "\\Nobel02\d" /persistent
ENDIF

IF INGROUP("DFW-FTP")
;	use p: /DEL
	use p: "\\dfw-pacerftp\pacer" /persistent
;	use q: /delete
	use q: "\\dfw-pacerftp\pacerbackup$" /persistent
ENDIF

IF NOT EXIST ("%SystemRoot%\system32\renre screensaver.scr")
	copy "K:\renre screensaver.scr" %SystemRoot%\system32
ENDIF

IF NOT EXIST ("%Userprofile%\desktop\helpdesk.url")
        copy "K:\helpdesk.url" "%Userprofile%\desktop"
        copy "K:\helpdesk.ico" "%SystemRoot%\system32"
ENDIF

IF INGROUP("DFW-SigTest")
  shell '"\\dfw-file01\company\emailsignature\sign.exe" Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\dfw-file01\company\eMailSignature\settings.mdb"'
ENDIF


EXIT


Ideas?

Raymond