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)