PowerShell 技能连载 - 查找嵌套的 AD 组成员
以下代码查找某个 Active Directory 用户属于哪些组(包括嵌套的组成员)。该代码需要 ActiveDirectory 模块。
1 | #requires -Module ActiveDirectory |
要查找组成员,只需要执行 Get-NestedGroupMember
,跟上用户名即可。该函数和 Get-ADUser
接受同样的身份信息,所以您可以传入 SamAccountName、SID、GUID,或 distinguishedName。
PowerShell 技能连载 - 查找嵌套的 AD 组成员
http://blog.vichamp.com/2018/02/05/finding-nested-ad-group-memberships/