在 C# 中查找受信任域中的 Active Directory 用户
我有一个 AD 域(我们将其称为 DMN)和访问它的凭据。我的目标是检索有关另一个用户的信息。当该用户在 DMN 域中注册时,这非常容易。但该用户可以是 DMN 信任域的一部分。所以我必须在所有受 DMN 信任的域中查找该用户。有什么建议如何在 C# 中做到这一点吗?提前致谢。
I have an AD domain (let's refer to it as DMN) and credentials to access it. My aim is to retrieve information about another user. It is pretty easy when this user is registered in the domain DMN. But this user can be a part of a DMN-trusted domain. So I have to look for this user in all domains trusted to DMN. Any suggestions how to do that in C#? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要找到您感兴趣的域的域命名上下文。
目录条目rootDSE 有一个属性configurationNamingContext。 IIRC 这将为您找到林配置容器,您将在其中找到其他域的命名上下文和 NetBIOS 名称。
我建议您查看这篇 Technet 文章开始并浏览您域的 rootDSE 条目以找到解决方法。
如果您仍然遇到问题,请再次发布 - 我有一些代码可以在某处执行此操作,我会尝试将其挖掘出来。
You need to find the domain naming contexts for the domains you are interested in.
The directory entry rootDSE has a property configurationNamingContext. IIRC this will find you the forest configuration container, where you will find the naming context and NetBIOS names of the other domains.
I suggest you look at this Technet article to get started, and browse the rootDSE entry of your domain to find your way around.
If you're still having problems, post again - I have some code that does this somewhere and I'll try to dig it out.