Exchange: Hide Mail Contact From GAL

How to hide a mail contact from your Global Address List? Microsoft has removed this option from the Exchange ECP web interface only for mail contacts. So you must use PowerShell to perform this step.

First, open the Exchange Management Shell and type the following command:

PS > Set-MailContact <alias> -HiddenFromAddressListsEnabled $true

To confirm the previous action, run this command:

PS > Get-MailContact <alias> | Format-List *hidden*

HiddenFromAddressListsEnabled : True

Do you want to hide all contacts in one step?

PS > Get-MailContact | Set-MailContact -HiddenFromAddressListsEnabled $true

 

Thanks for reading! You can follow me on Twitter @PrigentNico

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.