I found out recently that Server 2008 R2 dropped support for IFMEMBER.exe. Is that is true? If so I need to get the script below working with a related method.
Our company needs a logon script that looks at two different company groups in AD and maps drives base on group membership.
@echo off
ifmember "Domain\group1"
if not errorlevel 1 goto group2
Net Use K: \\ :group2
Net Use X: \\ :quit
Thanks,
Paul
Our company needs a logon script that looks at two different company groups in AD and maps drives base on group membership.
@echo off
ifmember "Domain\group1"
if not errorlevel 1 goto group2
Net Use K: \\ :group2
Net Use X: \\ :quit
Thanks,
Paul