How can I edit the Name field in Exchange Contacts?

Gidget Kimble 5 Reputation points
2023-11-29T16:34:55.3966667+00:00

When I export contacts from Exchange, there is a Name field, in addition to Display name, First name and Last name. I cannot find where to edit this Name field. I've tried looking in the Microsoft 365 admin center and the Exchange admin center.

Note - When I add a new contact, this name field does not appear.

Thanks.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,190 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Kael Yao 37,746 Reputation points Moderator
    2023-11-30T01:59:09.59+00:00

    Hi @Gidget Kimble

    The Name field is used when you create a mail contact via Exchange Online Powershell. (If you create the mail contact in Exchange Admin Center, it will share the same value as DisplayName)

    Example cmdlet:

    New-MailContact -Name "Chris Ashton" -ExternalEmailAddress "******@tailspintoys.com"
    

    It is used to specific the unique identity of the mail contact.

    01

    To modify the Name field, you may need to connect to Exchange Online Powershell as an Exchange admin and use Set-MailUser cmdlet.

    Example cmdlet:

    Set-MailContact -identity "name of this contact" -Name "unique new name"
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". 

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.