Address typical problems that arise when delegating distribution group management to end users.
Issue 1: Synced On-Premises Groups Lose Cloud Management
# Check if group is synced from on-premises
Get-DistributionGroup "Marketing Team" | Select IsDirSynced, RecipientTypeDetails
# For synced groups, reassign owners in Exchange Online
Set-DistributionGroup "Marketing Team" -ManagedBy "cloudowner@yourdomain.com" -BypassSecurityGroupManagerCheck
Issue 2: Send As Permission Rejected
# Verify Send As permissions are correctly applied
Get-RecipientPermission "Marketing Team" | Where-Object {$_.AccessRights -eq "SendAs"}
# Ensure user is using Reply-To, not From field in email client
# Mail contacts cannot use Send As - only mailbox users
Issue 3: Outlook Doesn't Show My Distribution Groups
# Verify user has correct role assignment
Get-ManagementRoleAssignment -RoleAssignee (Get-Mailbox "user@domain.com").DistinguishedName | Where-Object {$_.Role -like "*MyDistribution*"}
# Force Outlook to refresh (users should restart Outlook)
# Or wait up to 60 minutes for role changes to propagate
Warning: External users cannot be owners of distribution groups. They can only be members or have send permissions if they're mail contacts in your organization.
Verification: Test each troubleshooting step with affected users to confirm the issues are resolved.