The full script is as follows. I tended to think that this was very slow for normal operations. Thanks for all the help. Some of this is commented out because it will be comeing soon in our configuration, but we are not quite read for them yet.

;*************************************************************
; NAME: Clinton Login Script
;
; DATE : 4/14/04
;
; COMMENT:
;
;*************************************************************

;*************************************************************
; root variable intailization
;*************************************************************
$rootserver = "\\clnhfp01\"
$KixHome = $rootserver+"\ScriptTools\WKix32.exe"
$BatHome = $rootserver+"\ClintonLogon\bat\"
$ScriptHome = $rootserver+"\ClintonLogon\script\"

;*************************************************************
;Auto Install based Logic
; This is used for to install Applications automatically upon
; reboot
;*************************************************************

;*************************************************************
;Process M & N Drive Mappings
;*************************************************************
If (InGroup("TKNTOR\CLN__Clinton Users"))
$NTData = $RootServer+"NTData"
$NTSoftware = $RootServer+"NTSoftware"
Use M: $NTData
Use N: $NTSoftware
? "Drives should be connected"
endif

;*************************************************************
;Process Old Tor-Cl03 Drive Mappings
;*************************************************************
;If (InGroup("TKNTOR\CLN_Clinton Users"))
; Use q $RootServer+"Vol1\"
; Use u $RootServer+"NWData\"
; Use V $RootServer+"Vol4\"
; Use W $RootServer+"Vol3\"
; Use X $RootServer+"Vol2\"
; Use Y $RootServer+"Vol1\"
; Use Z $RootServer+"Sys\"
;endif

;*************************************************************
;Process User Home Drive Mappings
;*************************************************************
$UserHome = $rootServer+@UserID+"$"
if Exist($UserHome)
Use H $UserHome
endif

;*************************************************************
;Run login Batch if it exists
;*************************************************************
$AllUsersBat = $BatHome+"AllUsers.BAT"
If exist($AllUsersBat)
call $AllUsersBat
endif

$userbat = $BatHome+$uid+".BAT"
If exist($userbat)
call $userbat
endif

;*************************************************************
;Run login script if it exists
;*************************************************************
$AllUsersScr = $ScriptHome+"AllUsers.SCR"
If exist($AllUsersScr)
$KixHome $AllUsersScr
endif

$userScr = $ScriptHome+$uid+".SCR"
If exist($userScr)
$KixHome $userScr
EndIf