script for mappings based on groups memberships

  • Thread starter Thread starter Maineiac33
  • Start date Start date
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.
 
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
 
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
 
Back
Top