This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Connect with source tenant | |
Connect-AzureAD | |
#Connect with destination tenant | |
Connect-ExchangeOnline | |
$DL = "distrobutionlist1","distrobutionlist2" | |
$SourceDomain = "alexholmeset.blog" | |
$DestinationDomain = "contoso.com" | |
foreach($D in $DL){ | |
$List = @() | |
$List = Get-AzureADGroup -SearchString "$D" | |
$ListMembers = @() | |
$ListMembers = Get-AzureADGroupMember -ObjectId $List.ObjectId | |
$ListMembersUPN = @() | |
$ListMembersUPN = $ListMembers.UserPrincipalName | |
New-DistributionGroup -Name $List.DisplayName -Description $List.Description -PrimarySmtpAddress $($List.MailNickName+"@$DestinationDomain") | |
foreach($ListMemberUPN in $ListMembersUPN){ | |
Add-DistributionGroupMember -Identity $List.DisplayName -Member $ListMemberUPN.replace("$SourceDomain","$DestinationDomain") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment