Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 PowerShell 很陌生,无法找到执行以下任务的方法。
我需要列出属于 A 组成员的所有用户,然后按 B 组的成员身份提交结果
Get-memberof X group 然后显示该组的用户也是 y 组的成员
提前感谢您的帮助。
获取第一组的成员并将它们放入变量中,对第二组执行相同的操作。使用Compare-Objectcmdlet 查找两个组中都存在的对象(指定 -IncludeEqual 开关):
Compare-Object
Compare-Object $group1 $group2 -Property member -IncludeEqual | Where-Object {$_.SideIndicator -eq '=='}