문제

i need to get all group members which are in a specific OU (usersNewYork), the location of the group is in an other ou (ProxyGroups).

To copy the Users from the Group i would use this script:

Add-ADGroupMember destinationgroup -Members (Get-ADGroupMember sourceGroup)

How is it possible to only copy the members to the Destination Group from the specific OU?

도움이 되었습니까?

해결책

You need to filter your results to only include the group members that you want. There are several ways to do that, but you could try something like this:

Add-ADGroupMember destinationgroup -Members (Get-ADGroupMember sourceGroup | ? dn -match "*OU=usersNewYork,dc=company,dc=com" )
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top