Can someone help me map a drive to a user's home directory (not home share)? The shared directory is:
\\server\users

The user folders are one step below this and are the user's login name. I can get my script to map to the user share, but not the user directory. The server running the script is Windows NT4 and the workstation running the script is Windows 98.
Here is my simple script:

IF INGROUP("Domain Users") = 1
? "this person is in the Domain Users group"
USE K: @HOMESHR + '\' + @HOMEDIR
USE S: "\\maprofile\users"
Sleep 5
ELSE
? "You are not in this group...exiting"
sleep 5
ENDIF

Thanks,

Matt Mensching