{"id":6119,"date":"2022-09-06T23:33:07","date_gmt":"2022-09-06T23:33:07","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=6119"},"modified":"2022-11-23T21:44:02","modified_gmt":"2022-11-23T21:44:02","slug":"migrate-distribution-groups-and-members-between-365-tenants-and-settings","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings","title":{"rendered":"Migrate Distribution Groups and Members between 365 Tenants and settings"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Alex has already done the hard work for this which works well<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/alexholmeset.blog\/2022\/01\/06\/exchange-online-distribution-list-migration-script\/\">Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog)<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">#Connect with source tenant<br\/>Connect-AzureAD<br\/><br\/>#Connect with destination tenant<br\/>Connect-ExchangeOnline<br\/><br\/><br\/>#Dist Groups list in array &quot;1&quot;,&quot;2&quot;<br\/>$DL = &quot;1&quot;,&quot;2&quot;<br\/><br\/><br\/>$ZSourceDomain = &quot;sourcedomain.com&quot;<br\/>$CSourceDomain = &quot;sourcedomain2.com&quot;<br\/>$DestinationDomain = &quot;destinationdomain3.com&quot;<br\/><br\/>foreach($D in $DL){<br\/>    <br\/>   $List = @()<br\/>   $List = Get-AzureADGroup -SearchString &quot;$D&quot;<br\/>   #Remove office 365 Groups with same name , using SPO as identifier<br\/>   $List = $list | ?{$_.proxyaddresses -match &#039;.*SPO.*&#039;}<br\/> <br\/>   $ZListMembers = @()<br\/>   $ZListMembers = Get-AzureADGroupMember -ObjectId $List.ObjectId | Where-Object {$_.UserPrincipalName -like &#039;*$ZSourceDomain&#039;}<br\/><br\/>   $ZListMembersUPN = @()<br\/>   $ZListMembersUPN = $ZListMembers.UserPrincipalName<br\/><br\/>   $CListMembers = @()<br\/>   $CListMembers = Get-AzureADGroupMember -ObjectId $List.ObjectId | Where-Object {$_.UserPrincipalName -like &#039;*$CSourceDomain&#039;}<br\/><br\/>   $CListMembersUPN = @()<br\/>   $CListMembersUPN = $CListMembers.UserPrincipalName<br\/><br\/><br\/>   New-DistributionGroup -Name $List.DisplayName -Description $List.Description -PrimarySmtpAddress $($List.MailNickName+&quot;@$DestinationDomain&quot;)<br\/>    <br\/>   foreach($ZListMemberUPN in $ZListMembersUPN){<br\/>   <br\/>               <br\/>        Add-DistributionGroupMember -Identity $List.DisplayName -Member $ZListMemberUPN.replace(&quot;$ZSourceDomain&quot;,&quot;$DestinationDomain&quot;)<br\/>        <br\/>        }<br\/>   <br\/>   foreach($CListMemberUPN in $CListMembersUPN){<br\/>   <br\/>               <br\/>        Add-DistributionGroupMember -Identity $List.DisplayName -Member $CListMemberUPN.replace(&quot;$CSourceDomain&quot;,&quot;$DestinationDomain&quot;)<br\/>        <br\/>        }<br\/>   <br\/>   <br\/>   <br\/><br\/>}<\/code><\/pre> <div class=\"code-embed-infos\"> <a href=\"https:\/\/github.com\/pariswells\/pariswells.com\/blob\/master\/copy-adzuread-Distribution-Lists+members.ps1\" title=\"See copy-adzuread-Distribution-Lists+members.ps1\" target=\"_blank\" class=\"code-embed-name\">copy-adzuread-Distribution-Lists+members.ps1<\/a> <a href=\"https:\/\/raw.github.com\/pariswells\/pariswells.com\/master\/copy-adzuread-Distribution-Lists+members.ps1\" title=\"Back to copy-adzuread-Distribution-Lists+members.ps1\" class=\"code-embed-raw\" target=\"_blank\">view raw<\/a> <\/div> <\/div><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Lets Export all Distribution settings from Source Tenant<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">#Connect with source tenant<br\/>Connect-ExchangeOnline<br\/><br\/>Get-DistributionGroup -RecipientTypeDetails MailUniversalDistributionGroup\u00a0|\u00a0Export-Csv -Path \u201cC:\\Temp\\dGroupsall.csv&quot;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Lets Import and Set what we need to the Destination Tenant<br>This script does RequireSenderAuthenticationEnabled ( Delivery Restrictions ) , Owner ( ManagedBy ) and MemberJoinRestriction. You can add any new ones you would like to set from the Sheet<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">#Connect with destination tenant<br\/>Connect-ExchangeOnline<br\/><br\/>Import-Csv -Path &quot;C:\\Temp\\dGroupsall.csv&quot; | ForEach-Object {<br\/><br\/>#Lets do this one by one incase one fails it doesn\u2019t block other <br\/><br\/>\t#We need to convert the csv value to boolean to write to RequireSenderAuthenticationEnabled<br\/>\t[boolean] $RequireSenderAuthenticationEnabled = [system.convert]::toboolean($_.RequireSenderAuthenticationEnabled)<br\/>\tSet-DistributionGroup -Identity $_.Alias -RequireSenderAuthenticationEnabled $RequireSenderAuthenticationEnabled<br\/>\tSet-DistributionGroup -Identity $_.Alias -ManagedBy $_.ManagedBy <br\/>\tSet-DistributionGroup -Identity $_.Alias -MemberJoinRestriction $_.MemberJoinRestriction<br\/><br\/>}<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[3961,3958,2767,1418,3959,3960,576,3957,3962],"class_list":["post-6119","post","type-post","status-publish","format-standard","hentry","category-research","tag-boolean","tag-csv","tag-export","tag-import","tag-managedby","tag-memberjoinrestriction","tag-powershell","tag-requiresenderauthenticationenabled","tag-set-distributiongroup"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-09-06T23:33:07+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-11-23T21:44:02+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#article\",\"name\":\"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com\",\"headline\":\"Migrate Distribution Groups and Members between 365 Tenants and settings\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2022-09-06T23:33:07+00:00\",\"dateModified\":\"2022-11-23T21:44:02+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage\"},\"articleSection\":\"Research, boolean, CSV, export, import, ManagedBy, MemberJoinRestriction, powershell, RequireSenderAuthenticationEnabled, Set-DistributionGroup\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"position\":2,\"name\":\"Research\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#listItem\",\"name\":\"Migrate Distribution Groups and Members between 365 Tenants and settings\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#listItem\",\"position\":3,\"name\":\"Migrate Distribution Groups and Members between 365 Tenants and settings\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings\",\"name\":\"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com\",\"description\":\"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2022-09-06T23:33:07+00:00\",\"dateModified\":\"2022-11-23T21:44:02+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com","description":"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution","canonical_url":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#article","name":"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com","headline":"Migrate Distribution Groups and Members between 365 Tenants and settings","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2022-09-06T23:33:07+00:00","dateModified":"2022-11-23T21:44:02+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage"},"articleSection":"Research, boolean, CSV, export, import, ManagedBy, MemberJoinRestriction, powershell, RequireSenderAuthenticationEnabled, Set-DistributionGroup"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","position":2,"name":"Research","item":"https:\/\/pariswells.com\/blog\/category\/research","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#listItem","name":"Migrate Distribution Groups and Members between 365 Tenants and settings"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#listItem","position":3,"name":"Migrate Distribution Groups and Members between 365 Tenants and settings","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#webpage","url":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings","name":"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com","description":"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2022-09-06T23:33:07+00:00","dateModified":"2022-11-23T21:44:02+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com","og:description":"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution","og:url":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings","article:published_time":"2022-09-06T23:33:07+00:00","article:modified_time":"2022-11-23T21:44:02+00:00","twitter:card":"summary","twitter:title":"Migrate Distribution Groups and Members between 365 Tenants and settings | Welcome to Pariswells.com","twitter:description":"Alex has already done the hard work for this which works well Exchange Online Distribution List Migration Script | A blog about automation and technologies in the cloud (alexholmeset.blog) I changed the script as the Source tenant had multiple domains and also stoped 365 Groups with the same name causing issues Lets Export all Distribution"},"aioseo_meta_data":{"post_id":"6119","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-09-06 00:53:14","updated":"2022-11-23 21:44:21","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/research\" title=\"Research\">Research<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMigrate Distribution Groups and Members between 365 Tenants and settings\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Research","link":"https:\/\/pariswells.com\/blog\/category\/research"},{"label":"Migrate Distribution Groups and Members between 365 Tenants and settings","link":"https:\/\/pariswells.com\/blog\/research\/migrate-distribution-groups-and-members-between-365-tenants-and-settings"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6119","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=6119"}],"version-history":[{"count":6,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6119\/revisions"}],"predecessor-version":[{"id":6395,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/6119\/revisions\/6395"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=6119"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=6119"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=6119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}