Displaying 1 result from an estimated 1 matches for "group2files".
Did you mean:
group1files
2004 May 23
1
A (maybe)_ easy solution to global login script for group checking
...microsoft.com/windows2000/techinfo/reskit/tools/new/ifmember-o.asp
Then the script is:
@echo off
ifmember "DOMAIN\group1"
if not errorlevel 1 goto group2
net use r: \\SERVER\group1files
:group2
ifmember "DOMAIN\group2"
if not errorlevel 1 goto group3
net use s: \\SERVER\group2files
:group3
....
So according toi group the network drives get mapped. It's all in one login
script and makes things easy!
I couldn't find this in the archives so I thought I'd share this.
What's nice is that you have the ifmember only on the server.
Hope it's not just repeat...