I was trying to add someone to an Exchange Online distribution group and got the following error:
1 |
Ex8155FB|Microsoft.Exchange.Configuration.Tasks.ManagementObjectAmbiguousException|There are multiple recipients matching the identity "abc@def.com". Please specify a unique value. |
The solution for this is to do a search like this:
1 |
Get-EXORecipient -ResultSize unlimited | Where-Object { $_.EmailAddresses -match "<part of the address>" } | Format-List Alias,Name,DisplayName,@{Name="EmailAddresses";Expression={$_.EmailAddresses -join ';'}} |
That will show you the conflicting Exchange objects. Removing the offending one, or use the
Id
property to add the user.