来自活动领域的所有用户

来自活动领域的所有用户

本文介绍了来自活动领域的所有用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好!

在这里,我创建代码以从Active Directory中获取所有用户
我不知道那里出了什么问题


hi to all!

Here I create code to get all users from Active Directory
I dont know whats the problem there


try
{
   string path = "LDAP://usihgdgfui";
   string filter = "(&(objectCategory=person))";
   string[] propertiesToLoad = new string[1] { "name" };

   using (DirectoryEntry root = new DirectoryEntry(path, "xx\\xxxx", "xxxx"))
   using (DirectorySearcher searcher = new DirectorySearcher(root, filter, propertiesToLoad))
   using (SearchResultCollection results = searcher.FindAll())
   {
      foreach (SearchResult result in results)
      {
         string name = (string)result.Properties["name"][0];

         comboBox1.Items.Add(name);
      }
   }
}
catch
{
}

推荐答案


这篇关于来自活动领域的所有用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 02:49