本文介绍了AD中活动用户的LDAP属性问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图检索"userAccountControl"的值.原因是
userAccountControl =对于活动用户为" 512,对于非活动用户为" 514.
我将在我的过滤器中使用此前置操作来仅从AD中检索活动用户.
当我在代码中使用"userAccountControl"时,它不返回任何值.请指导我,我使用正确的属性和名称吗?
在此先感谢
Hi,
I was trying to retrieve the value of "userAccountControl".The reason for that is
userAccountControl= "512" for active and "514" for inactive user.
am going to use this preoperty in my filter to retrieve only Active users from AD.
when i use "userAccountControl" in my code,it doesn''t return any value.please guide me,am i using the right property and name ?
Thanks in Advance
推荐答案
DirectoryEntry d = new DirectoryEntry("LDAP://" + ["distinguishedName"]);
int uac = (int)d.Properties["userAccountControl"].Value
您是否尝试过?
have you tried this?
这篇关于AD中活动用户的LDAP属性问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!