exchange 2013
224 TopicsExport DL Memberships from Exchange 2013 and Import to 365 via PowerShell
Hi Guys, I am migrating our Distribution lists from Exchange 2013 server to O365. I have the following script to export and import memberships to a SINGLE DL but seeking your kind help to do the same for MULTIPLE DLs (200 in my case). Appreciate if anyone can shed some lights with a modified script here ! Export from Exchange Server 2013 for a single DL: Get-DistributionGroupMember -Identity "Marketing USA" | select Name,Alias | Export-CSV -Path "C:\Temp\ExportedDLMembers.csv" Import DL Membership from above CSV to Office 365 for a single DL: $CSVPath = "C:\Temp\ExportedDLMembers.csv" $Memberships = Import-Csv -Path $CSVPath $Memberships | ForEach-Object { $DistributionList = $_.Name $Member = $_.PrimarySmtpAddress Add-DistributionGroupMember -Identity $DistributionList -Member $Member } How can I achieve the same for MULTIPLE DLs (Export from Exchange server 2013 and import to 365 where Destination DLs are already exists). ? Thank you so much ! Kev782Views0likes2CommentsExchange 2013 -> Hybrid migration to EXO
Hi all, We have 2 Exchange 2013 servers with a DAG group configured. We would like to migrate to Exchange Online. As we know the Exchange 2013 is end-of-life. Can we still configure the HCW or do we receive errors or is this still possible?1.8KViews0likes5Comments