Thread Attributnamen in AD (5 answers)
Opened by renee at 2005-09-15 12:03

svenXY
 2005-09-15 17:47
#33551 #33551
User since
2005-09-15
33 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
my $ldap = Net::LDAP->new( 'mydc.mydomain.com' ) or die "$@";
my $mesg = $ldap->bind( $account,
password => $pwd
);
$mesg = $ldap->search( # perform a search

base => "ou=users, DC=mydomain, DC=com",

filter => "(&(objectclass=user))"

);

$mesg->code && die $mesg->error;


Gruss,
svenXY

View full thread Attributnamen in AD