This example finds all users in the forest whose first name is Reginald. To learn more about searching Active Directory, please see my more recent article Active Directory Enumeration and Search
use Win32::OLE;
$dse=Win32::OLE->GetObject("LDAP://RootDSE"); $root=$dse->Get("RootDomainNamingContext"); $adpath="GC://$root"; $base="<".$adpath.">";
$connection = Win32::OLE->new("ADODB.Connection"); $connection->{Provider} = "ADsDSOObject"; $connection->Open("ADSI Provider"); $command=Win32::OLE->new("ADODB.Command"); $command->{ActiveConnection}=$connection; $command->{Properties}->{'Page Size'}=1000; $rs = Win32::OLE->new("ADODB.RecordSet");
$command->{CommandText}="$base;(&(objectCategory=User)(givenName=Reginald));displayName;subtree";
$rs=$command->Execute; until ($rs->EOF){ $displayName=$rs->Fields(0)->{Value}; print "$displayName\n"; $rs->MoveNext; }
No comments:
Post a Comment