Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
Check the
HiddenFromAddressListsEnabled
property by running the following cmdlet:$User = Get-Mailbox -Identity john@contoso.com $User.HiddenFromAddressListsEnabled
Set the property value to False by running the following cmdlet:
Set-Mailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false
Method 2: Mailboxes are in Exchange Online in a hybrid configuration
Check the
HiddenFromAddressListsEnabled
property by running the following cmdlet:$User = Get-RemoteMailbox -Identity john@contoso.com $User.HiddenFromAddressListsEnabled
Set the property value to False by running the following cmdlet:
Set-RemoteMailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false
Method 3: Mailboxes are in Exchange Server in a hybrid configuration
Check the
HiddenFromAddressListsEnabled
property by running the following cmdlet:$User = Get-Mailbox -Identity john@contoso.com $User.HiddenFromAddressListsEnabled
Set the property value to False by running the following cmdlet:
Set-Mailbox -Identity john@contoso.com -HiddenFromAddressListsEnabled $false