最佳答案
我正在编写一个快速的 C # win 表单应用程序,以帮助解决重复的文书工作。
我在 AD 中搜索了所有用户帐户,并将它们添加到带复选框的列表视图中。
我想默认 listviewitem 的默认检查状态取决于帐户的启用/禁用状态。
string path = "LDAP://dc=example,dc=local";
DirectoryEntry directoryRoot = new DirectoryEntry(path);
DirectorySearcher searcher = new DirectorySearcher(directoryRoot,
"(&(objectClass=User)(objectCategory=Person))");
SearchResultCollection results = searcher.FindAll();
foreach (SearchResult result in results)
{
DirectoryEntry de = result.GetDirectoryEntry();
ListViewItem lvi = new ListViewItem(
(string)de.Properties["SAMAccountName"][0]);
// lvi.Checked = (bool) de.Properties["AccountEnabled"]
lvwUsers.Items.Add(lvi);
}
我正在努力寻找要解析的正确属性,以便从 DirectoryEntry 对象获取帐户的状态。我已经搜索了 AD 用户属性,但没有找到任何有用的东西。
有人能给点建议吗?