Displaying 1 result from an estimated 1 matches for "group1fil".
Did you mean:
group1files
2004 May 23
1
A (maybe)_ easy solution to global login script for group checking
...xe from the microsoft website, and stuck it in
the netlogon directory (not the scripts directory)
http://www.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...