windows

How do I copy members from one Active Directory security group to a new security group?

Using PowerShell you can quickly and easily copy members of an Active Directory security group to a new group. Simply launch PowerShell and execute the command below:

Add-ADGroupMember -Identity ‘New Group’ -Members (Get-ADGroupMember -Identity ‘Old Group’ -Recursive)

Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

To Top