Your biggest problem is you need to create a semi-automated batch script (or use a utility) to create 700 accounts with a share created for each user. In NT there is no automated procedure for creating these shares. When you create a user account in NT you can automatically generate a user directory but it is not a share. From your perspective this automatically created directory has some very unpleasant properties. It is owned by the user & only the user has permission to even look at it. An administrator can not view this directory let alone convert it to a share. To convert it to a share you must first take ownership, then change the access permissions & then create the share. You also need an automated batch script for deleting student accounts & home directories. If you have already accomplished this then I suspect you need very little advice from me.You can not use indirect share maps in NT (what confuses many people is Netware can do this) that attach the share with something like this: "USE U: \\<server>\<ShareName>\<UserID>" so you really can not use the group subdirectory characteristic for constructing the mapping during the login. Instead you must create the group characteristic during the account construction phase. Thus you create a share on the server called "UserID$" for directory "<Drive>:\<GroupDirectory>\<UserID>". During login your Kix script will contain the commands:
$UDIR="\\<server>\"+@USERID+"$"
USE U: $UDIR
_________________________
Jack