Automatic Mapping

Status
Not open for further replies.

rikinel

Baseband Member
Messages
28
I am a beginner in win 2003 server and server has already network drive G U V & X, If I make a new user as 'riki" in domain user, how to make it mapping automatically if I log in as "riki", If I log into network as administrator the mapping wil automatically appear....thanks
 
The proper way to do it is as mentioned via Active Directory at the Domain Controller. You basically write out all the logon scripts (usually .bat files) and place them in the netlogon folder of the server. Then simply point each users profile to the desired logon script. So say you have a subfolder named RIKI and one ADMINS you would under the users account in active directory point the logon script to riki\rikislogon.bat etc etc. You could also do a GPO, but this works good.
 
That is what our logon script looks like.
The first part deletes any existing drives with that letter. It then maps the letter to the location.

net use g: /delete /y
net use h: /delete /y
net use g: \\filesrvr\gdata
net use h: \\filesrvr\hdata
net time \\filesrvr /set /y
 
Status
Not open for further replies.
Back
Top Bottom