Jul 06 2023 03:34 AM
Hi guys,
Does anyone know if it's possible to create a distribution group of B2B users created from cross-tenant syncronisation? The mechanism provisions them in the respective tenants as 'Member' userTypes but with externalAD as the identity provider. I can setup groups with dynamics rules to make them members but when emailing the group it just delivers to the group inbox and not individual users.
I've created a group based on this:
$group = "CollabTest-All_Users"
$newgroup = New-AzureADMSGroup -DisplayName "$group" `
-Description "$group" `
-MailEnabled $True `
-SecurityEnabled $True `
-MailNickname $group `
-GroupTypes "DynamicMembership", "Unified" `
-MembershipRule "(user.mail -contains ""@example.co.uk"")" `
-MembershipRuleProcessingState "Paused"
Sleep 15
Set-UnifiedGroup `
-identity $group `
-AutoSubscribeNewMembers:$true `
-AlwaysSubscribeMembersToCalendarEvents:$false `
-HiddenFromExchangeClientsEnabled:$true `
-UnifiedGroupWelcomeMessageEnabled:$false `
-SubscriptionEnabled:$true
Set-AzureADMSGroup -Id $newgroup.id -MembershipRuleProcessingState "On"
The AutoSubscribeNewMembers should mean that email for the group is delivered to the inbox as well and this seems to work for native tenant members but not external tenant members.
From my understanding - B2B Collab users that are guests also have mailContacts created when they are invited and provisioned, unlike B2B Cross-sync users.
The use case for this is to simplify distribution group management for company mergers/acquisitions where the subsidiaries will still maintain their own tenants but require a unified communication platform.
Have I missed the obvious here?
Jul 06 2023 08:29 AM
Jul 06 2023 11:18 AM
Jul 06 2023 11:15 PM