> 백엔드 개발 > C++ > PrincipalSearcher를 사용하여 Active Directory에서 사용자 정보를 검색하려면 어떻게 해야 합니까?

PrincipalSearcher를 사용하여 Active Directory에서 사용자 정보를 검색하려면 어떻게 해야 합니까?

Linda Hamilton
풀어 주다: 2025-01-06 13:30:41
원래의
847명이 탐색했습니다.

How Can I Retrieve User Information from Active Directory Using PrincipalSearcher?

PrincipalSearcher를 사용하여 Active Directory에서 사용자 정보 검색

Active Directory를 처음 사용하는 경우 계층적 데이터 구조를 이해하고 LDAP 쿼리 기능. 사용자 목록을 검색하기 위해 System.DirectoryServices.AccountManagement의 PrincipalSearcher 클래스는 직관적인 접근 방식을 제공합니다.

(var context = new PrincipalContext(ContextType.Domain, "yourdomain.com"))
를 사용하여 설정합니다. 지정된 도메인에 대한 연결.

(var searcher = new PrincipalSearcher(new) 사용 UserPrincipal(context)))
사용자 주체를 찾기 위한 검색 개체를 생성합니다.

FindAll() 루프 내에서 각 결과와 연결된 DirectoryEntry 개체를 가져와 다음과 같은 속성에 액세스합니다.

  • givenName: 이름
  • sn: 성 이름
  • samAccountName: Windows 2000 이전 사용자 로그온 이름
  • userPrincipalName: Windows 2000 이후에 사용되는 로그온 이름

아래 코드 조각은 이 접근 방식의 예를 제공합니다.

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();
로그인 후 복사

이 솔루션은 원하는 것을 효율적으로 검색합니다. Active Directory의 사용자 정보.

위 내용은 PrincipalSearcher를 사용하여 Active Directory에서 사용자 정보를 검색하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿