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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi All

Status
Not open for further replies.

Ronel17

Technical User
Dec 31, 2004
60
0
0
US
Hi,
How do I create a script to automatically map several drive in Windows 2000 server for XP users

Thanks
 
If you want to map a network drive in a users login script so that it was mapped each time they logged on you would write:

net use R: \\gizmo\test

Where R: is the drive letter where you want the share to appear on the users machine

gizmo is the name of the server the share sits on.

and test is the folder you want to share

Hope this helps
 
I have done that, I have another logon script, how do i put them in user's profile ?leave a space between them a(;) or a (,).
Thanks
 
Hello Ronel17

As Shreks mentioned, in your script you add a new line for each mapped share.
Be aware that users mapping things by themselves might block your script if for examploe they use the same letter.
 
Hi,
Thank you for help. I'm using a VB script, that works fine now.
Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top