我可以使用以下代码找到活动目录用户的状态。
var response = (SearchResponse)ldapConnection.SendRequest(userReq);
var result = response.Entries[0];
Convert.ToBoolean(
int.Parse(result.Attributes["useraccountcontrol"][0].ToString()) &
0x0002)
当我使用它来活动目录组时,它总是返回 null。
有人能建议如何查找活动目录组状态吗?
答案1
使用 powershell 命令行https://technet.microsoft.com/en-us/library/ee617196.aspx获取 ADGroup。