在C#中,要查询Active Directory的用户信息,可以使用System.DirectoryServices.AccountManagement
命名空间。以下是一个简单的示例,展示了如何查询Active Directory中的用户信息:
using System;
using System.DirectoryServices.AccountManagement;
namespace ActiveDirectoryQuery
{
class Program
{
static void Main(string[] args)
{
// 设置Active Directory连接
string domain = "your_domain";
string username = "your_username";
string password = "your_password";
using (PrincipalContext context = new PrincipalContext(ContextType.Domain, domain, username, password))
{
// 根据用户名查询用户
string userNameToSearch = "user_to_search";
UserPrincipal user = UserPrincipal.FindByIdentity(context, userNameToSearch);
if (user != null)
{
Console.WriteLine("User Information:");
Console.WriteLine($"Name: {user.DisplayName}");
Console.WriteLine($"Email: {user.EmailAddress}");
Console.WriteLine($"Phone: {user.VoiceTelephoneNumber}");
Console.WriteLine($"Title: {user.Title}");
Console.WriteLine($"Department: {user.Department}");
Console.WriteLine($"Manager: {user.Manager?.DisplayName}");
}
else
{
Console.WriteLine("User not found.");
}
}
}
}
}
请确保将your_domain
、your_username
、your_password
和user_to_search
替换为实际的值。这个示例将查询指定用户的基本信息,如姓名、电子邮件、电话、职位、部门和经理。你可以根据需要修改此示例以获取其他属性。