The below PowerShell script will copy Active Directory Group membership from source group to destination group. You need to update the Source and Target group name in the script.
Import-Module ActiveDirectory
$gsource =Get-ADGroup "Test Group1"
$gtarget = Get-ADGroup "Test Group2"
Get-ADGroupMember -Identity $gsource |
foreach {Add-ADGroupMember -Identity $gtarget -Members $($_.DistinguishedName)}
Related Posts
- Powershell – Get System up time
- Powershell Script : List AD Organizational Unit and GPOs linked to them
- Powershell – Compare hardware and software details on two computers
- Powershell Script : Retrieve AD Computers Properties
- Powershell – Merge CSV files & Insert file name as a column
- Powershell Script: Validate if Computer account exists in Active Directory
- Powershell remote – WinRM cannot complete the operation
- Powershell script to Add bulk users / computers to AD Group
- PowerShell Script : Copy AD Group Membership
- Using PowerShell Behind a Proxy Server
Subscribe to Techuisitive Newsletter
Be the first to know about our new blog posts. Get our newsletters directly in your inbox and stay up to date about Modern Desktop Management technologies & news.