I am trying to see if a user is disabled or not (using PHP and adLDAP). I can authenticate a user. The example I am using is this:

$user = 'jdoe'
$user_info=$adldap->user_info($user,array("useraccountcontrol"));
$enabled = (($user_info[0]['useraccountcontrol'][0] & 2) == 0);

The issue is that I always get 1 even for non-existing accounts. The example is taken from here: adLDAP examples

I am connecting to LDAP as normal user. I do not have admin rights.

link|improve this question

62% accept rate
feedback

1 Answer

It might be that the attribute useraccountcontrol is not declared in your AD schema for your objectclass user. Please verify your AD schema with ADSI edit or any schema viewer to make sure your objects have this attribute set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.