We are converting from W2k servers and have just got 4 new W2k3 servers. This is how we were setup with the W2k servers, but this is not working properly with W2k3.

Here is a part of our KixScript:

 Code:
;***********************************************************
; Setup the users working Root drive for their session U:\
;***********************************************************
;
;
SetConsole ("HIDE")
;
;***********************************************************
; Setup the users working Root drive for their session U:\
;***********************************************************
;
$root="U:"
$sub="C:\documents and settings\@userid"
;
;
Use U: /delete
Shell '%comspec% /c subst "$root" "$sub"'
;
;******************************************************************************************
;Create User Temp Directory in U:\
;******************************************************************************************
;
If NOT Exist ("U:\Temp")
	Shell '%comspec% /c md "U:\temp"'
Endif
;

Set "TEMP=U:\TEMP\"
Set "TMP=U:\TEMP\"



Are you saying that W2k3 is incapable of doing this? Why does it work
sometimes? Thanks!

Faithful