;***********************************************************
; 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\"