如何从活动目录中获取用户列表?有没有办法提取用户名,名字,姓氏?我看到了一个类似的帖子,其中使用了它:
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "YOURDOMAIN");
我从来没有对活动目录做过任何事情,所以我完全迷路了。任何帮助将不胜感激!
如何从活动目录中获取用户列表?有没有办法提取用户名,名字,姓氏?我看到了一个类似的帖子,其中使用了它:
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "YOURDOMAIN");
我从来没有对活动目录做过任何事情,所以我完全迷路了。任何帮助将不胜感激!
Answers:
如果您不熟悉Active Directory,建议您先了解Active Directory如何存储数据。
Active Directory实际上是LDAP服务器。LDAP服务器中存储的对象是分层存储的。这与将文件存储在文件系统中非常相似。这就是为什么它得名目录服务器和Active Directory
Active Directory上的容器和对象可以通过来指定distinguished name
。专有名称就是这样CN=SomeName,CN=SomeDirectory,DC=yourdomain,DC=com
。像传统的关系数据库一样,您可以对LDAP服务器运行查询。这称为LDAP查询。
有多种方法可以在.NET中运行LDAP查询。您可以使用的DirectorySearcher从System.DirectoryServices
或SearchRequest的System.DirectoryServices.Protocol
。
对于你的问题,因为你是问找到用户主体对象而言,我认为最直观的方法是使用PrincipalSearcher从System.DirectoryServices.AccountManagement
。您可以轻松地从Google找到很多不同的示例。这是一个示例,它可以完全满足您的要求。
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();
请注意,在AD用户对象上,有许多属性。特别是givenName
会给您First Name
和sn
会给您Last Name
。关于用户名。我认为您的意思是用户登录名。请注意,AD用户对象上有两个登录名。一个是samAccountName
,也称为Windows 2000之前的用户登录名。 userPrincipalName
通常在Windows 2000之后使用。
if (((UserPrincipal)result).EmailAddress != null)
然后再将结果添加到列表中即可。
如果要过滤y个活动帐户,请将其添加到Harvey的代码中:
UserPrincipal userPrin = new UserPrincipal(context);
userPrin.Enabled = true;
第一次使用后。然后加
searcher.QueryFilter = userPrin;
在找到所有之前。那应该让您活跃起来。
searcher.QueryFilter = userPrin;
因为我们已经在初始化时将用户主体传递给主体搜索器,但是除此之外,感谢您仅过滤活动用户的提示!
using (var searcher = new PrincipalSearcher(new UserPrincipal(context){ Enabled = true }))
Enabled
具有价值:if (userPrincipal.Enabled.HasValue)
当然,这归功于@Harvey Kwok,但我只是想添加此示例,因为在我的情况下,我想获取实际的UserPrincipals列表。预先过滤该查询可能更有效,但是在我的小型环境中,将所有内容提取出来,然后根据需要从列表中进行过滤就更容易了。
根据您的需要,可能不需要强制转换为DirectoryEntry,但是UserPrincipal无法提供某些属性。
using (var searcher = new PrincipalSearcher(new UserPrincipal(new PrincipalContext(ContextType.Domain, Environment.UserDomainName))))
{
List<UserPrincipal> users = searcher.FindAll().Select(u => (UserPrincipal)u).ToList();
foreach(var u in users)
{
DirectoryEntry d = (DirectoryEntry)u.GetUnderlyingObject();
Console.WriteLine(d.Properties["GivenName"]?.Value?.ToString() + d.Properties["sn"]?.Value?.ToString());
}
}
包括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 ;
}
}
MessageBox.Show(userNames);