Using this page to keep track of all the useful powershell "mini-scripts" I've used:
Copy users from one security group to another security group
Add-ADGroupMember -Identity destination-group-name -Members (Get-ADGroupMember -Identity source-group-name -Recursive)
Add enabled users from an OU to a security group
Get-ADUser -SearchBase 'OU=Your-OU,DC=corp,DC=company,