首頁 > 後端開發 > C++ > 如何使用 C# 有效率地從 Active Directory 檢索使用者資訊?

如何使用 C# 有效率地從 Active Directory 檢索使用者資訊?

Mary-Kate Olsen
發布: 2025-01-06 13:23:40
原創
624 人瀏覽過

How Can I Efficiently Retrieve User Information from Active Directory Using C#?

從Active Directory 擷取使用者資訊

作為Active Directory 的新手,了解其分層資料儲存機制和LDAP 查詢功能至關重要。

使用System.DirectoryServices.AccountManagement中的PrincipalSearcher,可以有效地檢索使用者資訊。下面提供了一個範例:

using (var context = new PrincipalContext(ContextType.Domain, "yourdomain.com"))
{
    using (var searcher = new PrincipalSearcher(new UserPrincipal(context)))
    {
        foreach (var result in searcher.FindAll())
        {
            DirectoryEntry de = result.GetUnderlyingObject() as DirectoryEntry;
            Console.WriteLine("First Name: " + de.Properties["givenName"].Value);
            Console.WriteLine("Last Name : " + de.Properties["sn"].Value);
            Console.WriteLine("SAM account name   : " + de.Properties["samAccountName"].Value);
            Console.WriteLine("User principal name: " + de.Properties["userPrincipalName"].Value);
            Console.WriteLine();
        }
    }
}
Console.ReadLine();
登入後複製

「givenName」等屬性提供名字,「sn」提供姓氏,「samAccountName」是Windows 2000 之前的使用者登入名,「userPrincipalName」通常在Windows 2000 之後使用。

以上是如何使用 C# 有效率地從 Active Directory 檢索使用者資訊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板