This is the script I use to do this. The T drive is mapped to a regular directory, the K drive is mapped to a users home folder. The varible s user and get user logon name are used to retrieve the logon name of the user and map to a folder with this name in a directory. In order for this to work your user directories must be named the same as their logon name.
' declare variables
dim wshnetwork
dim ie
dim sUser
' suppress error messages
on error resume next
' set reference to WSH network object
set wshnetwork=wscript.createobject("wscript.network"
' Get logon Name of Current User
sUser = wshnetwork.Username
' remove network drive in case it is already in use
wshnetwork.removenetworkdrive "K:"
' add network drive
wshnetwork.mapnetworkdrive "K:","\\Server\users\faculty\" + sUser
' add network drive
wshnetwork.mapnetworkdrive "T:","\\Server\Shared\Tracker"