从活动目录中获取任何用户的用户名和昵称

发布于 2024-10-29 07:28:01 字数 37 浏览 2 评论 0原文

我想从我的活动目录中获取任何用户的昵称和用户名,我该怎么做?

I want to get the NickName and username of any users from my active directory how can i do it??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛起拖把扫天下 2024-11-05 07:28:01

这里有 2 篇关于 C# 和 Active Directory 的好文章:

如何访问 AD 的示例:

包括 System.DirectoryServices.dll 引用。

DirectoryEntry directoryEntry = new DirectoryEntry("WinNT://" + Environment.MachineName);
string userNames="Users :  ";
foreach (DirectoryEntry child in directoryEntry.Children)
{
    if (child.SchemaClassName == "User")
    {
        userNames += child.Name + Environment.NewLine;
        PropertyCollection coll = child.Properties;

        // sample of how to get other values
        object fullName = coll["FullName"].Value;         
        object nickName = coll["OtherName"].Value;         
    }

}
MessageBox.Show(userNames);

以下是您可以获取其值的其他属性的列表: IAD用户界面

Here are 2 good articles about C# and active directory:

A sample of how to access AD:

include System.DirectoryServices.dll reference.

DirectoryEntry directoryEntry = new DirectoryEntry("WinNT://" + Environment.MachineName);
string userNames="Users :  ";
foreach (DirectoryEntry child in directoryEntry.Children)
{
    if (child.SchemaClassName == "User")
    {
        userNames += child.Name + Environment.NewLine;
        PropertyCollection coll = child.Properties;

        // sample of how to get other values
        object fullName = coll["FullName"].Value;         
        object nickName = coll["OtherName"].Value;         
    }

}
MessageBox.Show(userNames);

Here is a list of other properties which values you can get out: IADsUser Interface

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文