When I'm trying to assign a license I'm getting an error message stating "Another object with the same value for property proxyAddresses already exists"

Anand 5 Reputation points
2024-06-15T02:26:05.79+00:00

User's image

How can I fix this problem?

Microsoft Exchange Online
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,313 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Xintao Qiao-MSFT 635 Reputation points Microsoft Vendor
    2024-06-17T10:01:25.6333333+00:00

    Hi, Anand

    Based on your description, I understand that you had an issue with proxy address conflicts when assigning licenses.

    The error message occurs if an MEPF object that exists only in Microsoft Entra ID uses the proxy address that you want to assign.

    To resolve this issue, you need to identify the duplicated ProxyAddresses value that's causing the error and also identify which two or more objects are involved in the conflict. 

    Here are some suggestions:

    1.It is recommended that you check for and remove any conflicting proxy addresses in Exchange Online.

    A proxy address can only be assigned to one object at a time. After determining which object is in conflict, delete or change the proxy address associated with that object.

    You could use Get-EXORecipient -ResultSize unlimited | Where-Object {$_.EmailAddresses -match "<conflicting SMTP address>"} | fl Name, RecipientType, EmailAddresses

    2.Then check and remove any conflicting proxy addresses in Microsoft Entra ID.

    You can use command Get-MailPublicFolder -ResultSize Unlimited | Where-Object {$_.EmailAddresses -match "<conflicting SMTP address>"} to search for conflicting proxy addresses.

    Then you can use the command Set-MailPublicFolder -Identity <public folder name or GUID> -EmailAddresses @{remove="<conflicting SMTP address>"} -EmailAddressPolicyEnabled:$false to remove the conflicting SMTP addresses.

    More information can be found Proxy address conflict when adding an email address in Exchange Online - Exchange | Microsoft Learn

    If my answer is helpful to you, please mark it as the answer so that other users can refer to it. Thank you for your support and understanding.

    0 comments No comments

  3. Xintao Qiao-MSFT 635 Reputation points Microsoft Vendor
    2024-06-17T10:03:17.9866667+00:00

    Hi, Anand

    Based on your description, I understand that you had an issue with proxy address conflicts when assigning licenses.

    The error message occurs if an MEPF object that exists only in Microsoft Entra ID uses the proxy address that you want to assign.

    To resolve this issue, you need to identify the duplicated ProxyAddresses value that's causing the error and also identify which two or more objects are involved in the conflict. 

    Here are some suggestions:

    1.It is recommended that you check for and remove any conflicting proxy addresses in Exchange Online.

    A proxy address can only be assigned to one object at a time. After determining which object is in conflict, delete or change the proxy address associated with that object.

    You could use Get-EXORecipient -ResultSize unlimited | Where-Object {$_.EmailAddresses -match "<conflicting SMTP address>"} | fl Name, RecipientType, EmailAddresses

    1. Then check and remove any conflicting proxy addresses in Microsoft Entra ID.

    You can use command Get-MailPublicFolder -ResultSize Unlimited | Where-Object {$_.EmailAddresses -match "<conflicting SMTP address>"} to search for conflicting proxy addresses.

    Then you can use the command Set-MailPublicFolder -Identity <public folder name or GUID> -EmailAddresses @{remove="<conflicting SMTP address>"} -EmailAddressPolicyEnabled:$false to remove the conflicting SMTP addresses.

    More information can be found Proxy address conflict when adding an email address in Exchange Online - Exchange | Microsoft Learn

    If my answer is helpful to you, please mark it as the answer so that other users can refer to it. Thank you for your support and understanding.

    0 comments No comments