如何使用 C# 按用户名搜索 Active Directory? [英] How can I search Active Directory by username using C#?

查看:26
本文介绍了如何使用 C# 按用户名搜索 Active Directory?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过用户名admin"搜索活动目录.我知道目录中存在具有该用户名的用户,但搜索一直没有结果.

I'm trying to search active directory by the username 'admin'. I know for a fact that there is a user with that username in the directory, but the search keeps coming back with nothing.

var attributeName = "userPrincipalName";
var searchString = "admin"
var ent = new DirectoryEntry("LDAP://"dc=corp,dc=contoso,dc=com")
var mySearcher = new DirectorySearcher(ent);
mySearcher.Filter = string.Format("(&(objectClass=user)({0}={1}))", attributeName, searchString);

var userResult = mySearcher.FindOne();

userResult 总是以 null 结束.我很想知道为什么,一定有我遗漏的东西.

userResult always ends up null. I would love to know why, there must be something that I'm missing.

推荐答案

原来userPrincipalName"需要全部小写(userprincipalname").很高兴知道,感谢您的回复.

It turns out that "userPrincipalName" needed to be all lower-case ("userprincipalname"). Good to know, thanks for your responses.

这篇关于如何使用 C# 按用户名搜索 Active Directory?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆