script for mappings based on groups memberships

M

Maineiac33

Hopefully I have the right forum. Could anyone point me
in the right direction for building a vbs logon script to
map users drives based on what group they belong to? All
clients are Win2000 in a Win2k AD domain.
 
E

Ed Siff

Why complicate it? You can do this with a batch file using ifmember.exe:

ifmember groupname
if not errorlevel 1 goto somewhereelse
net use x: \\servername\sharename

Ed
 
A

Al Dunbar [MS-MVP]

Maineiac33 said:
Hopefully I have the right forum. Could anyone point me
in the right direction for building a vbs logon script to
map users drives based on what group they belong to? All
clients are Win2000 in a Win2k AD domain.

Sorry. Wrong group. That question has never been asked here before.

Wait, oh, *that* question. Have a look at Richard Mueller's excellent site
at:

http://www.rlmueller.net/


/Al
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top