Add-ADGroupMember -Identity 'DestinationGroup' -Members $(Get-ADGroupMember
-Identity 'SourceGroup')
On Tue, Jul 22, 2014 at 10:33 AM, Marcum, John wrote:
> I'm sure this is really easy but…. I need to copy all of the users in
> Group A to Group B with PoSh. How do I do that?
>
>
>
> I see tha
I'm sure this is really easy but I need to copy all of the users in Group A
to Group B with PoSh. How do I do that?
I see that Get-ADGroup GroupA -properties members gets me all the members and
Add-ADGroupMember -Identity GroupB would be used to add the members into the
second group. How do