Share via


User information in @mentions doesn't resolve

Symptoms

In Microsoft Word, Excel, PowerPoint, and Outlook, if you mention a user by using the @ sign followed by the user's name or email alias, the user doesn't resolve.

Cause

This issue occurs if the user is hidden from the global address list (GAL) in Microsoft Exchange Server or Exchange Online.

Resolution

To resolve this issue, use one of the methods, as appropriate for your situation.

Note: The following steps must be done by an administrator.

Method 1: Mailboxes are in Exchange Online in a non-hybrid configuration

  1. Connect to Exchange Online PowerShell.

  2. Check the HiddenFromAddressListsEnabled property by running the following cmdlet:

    PowerShell
    $User = Get-Mailbox -Identity john@contoso.com
    $User.HiddenFromAddressListsEnabled
    
  3. Set the property value to False by running the following cmdlet:

    PowerShell
    Set-Mailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false
    

Method 2: Mailboxes are in Exchange Online in a hybrid configuration

  1. Open the Exchange Management Shell.

  2. Check the HiddenFromAddressListsEnabled property by running the following cmdlet:

    PowerShell
    $User = Get-RemoteMailbox -Identity john@contoso.com
    $User.HiddenFromAddressListsEnabled
    
  3. Set the property value to False by running the following cmdlet:

    PowerShell
    Set-RemoteMailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false
    

Method 3: Mailboxes are in Exchange Server in a hybrid configuration

  1. Open the Exchange Management Shell.

  2. Check the HiddenFromAddressListsEnabled property by running the following cmdlet:

    PowerShell
    $User = Get-Mailbox -Identity john@contoso.com
    $User.HiddenFromAddressListsEnabled
    
  3. Set the property value to False by running the following cmdlet:

    PowerShell
    Set-Mailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false