PowerShell 技能连载 - 查找嵌套的 Active Directory 成员(第 2 部分)

在前一个技能中我们演示了如何使用 ActiveDirectory 模块中的 cmdlet 来查找某个 Active Directory 用户所有直接和间接的成员。

如果您没有权限操作 ActiveDirectory 模块,PowerShell 也可以使用纯 .NET 方法来获取成员:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
function Get-NestedGroupMember
{
param
(
[Parameter(Mandatory,ValueFromPipeline)]
[string]
$distinguishedName
)

process
{

$DomainController = $env:logonserver.Replace("\\","")
$Domain = New-Object System.DirectoryServices.DirectoryEntry("LDAP://$DomainController")
$Searcher = New-Object System.DirectoryServices.DirectorySearcher($Domain)
$Searcher.PageSize = 1000
$Searcher.SearchScope = "subtree"
$Searcher.Filter = "(&(objectClass=group)(member:1.2.840.113556.1.4.1941:=$distinguishedName))"
# attention: property names are case-sensitive!
$colProplist = "name","distinguishedName"
foreach ($i in $colPropList){$Searcher.PropertiesToLoad.Add($i) | Out-Null}
$all = $Searcher.FindAll()

$all.Properties | ForEach-Object {
[PSCustomObject]@{
# attention: property names on right side are case-sensitive!
Name = $_.name[0]
DN = $_.distinguishedname[0]
} }
}
}

# make sure you specify a valid distinguishedname for a user below
Get-NestedGroupMember -distinguishedName 'CN=UserName,DC=powershell,DC=local'

PowerShell 技能连载 - 查找嵌套的 Active Directory 成员(第 2 部分)

http://blog.vichamp.com/2018/07/23/finding-nested-active-directory-memberships-part-2/

作者

吴波

发布于

2018-07-23

更新于

2022-07-06

许可协议

评论