Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mapping Drives 1

Status
Not open for further replies.

furious5

MIS
Jan 8, 2003
103
GB
Can anyone advise me if it is possible to automatically map drives in Windows 2000 Server based on a persons username?

I did something similar in Netware 5 a long time ago, but am not sure whether I would be able to do this in Windows 2000 Server.

 
Under Windows 2000 you want to create a roaming profile. This will allow the user to have the same mapped drive, desktop settings, etc. no matter what workstation they log onto on the network.

Valentina
MCSA, CNA
 
You can make a small script using the command net use (for help type net use /?)
You can make this script run by telling the profile to do it.(Porperties of the User Account). Or by creating a group POlicy Object for that specific User in Active Directory.
You will find that option in the Group POlicy, under User configuration-->Windows Settings-->Scripts (Log on/Log off)
Hope this helps A+, MCP, CCNA
marbinpr@hotmail.com

"I just know that I know nothing"
Socrates (469-399 B.C.E.)

 
I've just done that very thing.

Create a batch file like the one bellow:

Echo off@

NET USE Z: \\SERVERNAME\SHARENAME
NET USE Y: \\SERVERNAME\SHARENAME

And save it in "winnt\sysvol\sysvol\domainname\scripts

Then go to AD users and computers, and in the users properties go to the accounts tab and type the name of the batch file. click ok and get the user to logon again.

Hope this works

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top