Link to home
Start Free TrialLog in
Avatar of dspavlik158
dspavlik158

asked on

Windows 2000 Login Scripts or Mapping Drives

I am in the process of moving my company from Netware to MS servers.  Currently Netware login scripts handle mapping drives to netware servers.  I'd like to know how to get drives mapped to MS Servers when users login to the domain.  Users currently login to both NW and the MS domain.  I already have users printing through the MS servers.  What do i need to do?

TIA Doug
Avatar of edmonds_robert
edmonds_robert
Flag of United States of America image

In the user's profile, specify the name of your login script.  Then in the login script use the net use command.
For example:

net use z: \\servername\sharename
The problem with specifying the mapped drive in the user profile is that it is limited to one.  This is usually used to create and automatically map a user's home folder, aka private folder.
ASKER CERTIFIED SOLUTION
Avatar of 0byte
0byte

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dspavlik158
dspavlik158

ASKER

THis is getting me pointed in the right direction Thanks