我正在尝试获取AD中的安全组列表,但我没有太多运气。 当我检查Active Directory用户和计算机MMC时,我看到:
blah.blah.com (top)
Group 1
Group1_1
Group1_2
Group1_2_1
Group2
等等。 我需要的是Group1_2_1中的所有安全组 我尝试使用“(&(objectClass = group))”作为搜索过滤器使用DirectoryEntry和DirectorySearcher,但我得到了在Active Directory用户和计算机MMC中找不到的东西。
这就是我在C#代码中所拥有的:
// Binding path.
string strPath = "LDAP://<domain_name>.ABC.DEF.COM";
// Binding object.
DirectoryEntry objADAM = default(DirectoryEntry);
// Group Results.
DirectoryEntry objGroupEntry = default(DirectoryEntry);
// Search object.
DirectorySearcher objSearchADAM = default(DirectorySearcher);
// Results collection.
SearchResultCollection objSearchResults = default(SearchResultCollection);
// Construct the binding string.
List<string> result = new List<string>();
// Get the AD LDS object.
try
{
objADAM = new DirectoryEntry(strPath);
objADAM.RefreshCache();
}
catch (Exception e)
{
throw e;
}
// Get search object, specify filter and scope,
// perform search.
try
{
objSearchADAM = new DirectorySearcher(objADAM);
objSearchADAM.Filter = "Group1_2_1 (groupType:1.2.840.113556.1.4.803:=2147483648)";
//objSearchADAM.Filter = "(&(objectCategory=group)(OU=Group1_2)(OU=Group1_2_1))";
objSearchADAM.SearchScope = SearchScope.Subtree;
objSearchResults = objSearchADAM.FindAll();
}
感谢。
答案 0 :(得分:0)
尝试: 将您的基地设置为: Group1_2_1 (groupType:1.2.840.113556.1.4.803:= 2147483648)
some more examples. -Jim
答案 1 :(得分:-1)
如果这仅适用于单个用户安全组,则下面是单线程PowerShell脚本
Get-ADPrincipalGroupMembership -Identity >samaccount< | Where-Object {$_.distinguishedname -notcontains "config"}| Where-Object {$_.GroupCategory -notmatch "distribution"} | select name
这将首先获得用户的完整成员资格 - &gt;然后删除&#39; config&#39;的成员资格。群组 - &gt;然后筛选出通讯组 - &gt;最后它只会给你安全组的名称。
此致 Avisekh