我正在尝试编写一个用于管理AD用户的应用程序,但遇到了一些问题。我编写的代码仅将AD中的一些用户添加到了ComboBox中,而不是全部。与被添加的人没有关系。任何帮助表示赞赏。
private void TestNames(){
DirectoryEntry RootDSE = new DirectoryEntry("LDAP://DC=xxxxx,DC=com");
DirectorySearcher ADSearch = new DirectorySearcher(RootDSE);
foreach (SearchResult ADSearchResult in ADSearch.FindAll()){
if (ADSearchResult.GetDirectoryEntry().Properties["employeeID"].Value != null){
name.Items.Add(ADSearchResult.GetDirectoryEntry().Properties["displayName"].Value.ToString());
}
}
}
我希望将所有AD用户添加到ComboBox,但是现在它仅添加了一些无关的用户