Q. How can I use PowerShell to get a list of all Exchange users who are hidden from the Global Address List (GAL)?

John Savill

August 14, 2008

1 Min Read
ITPro Today logo

A. When a user is hidden from the GAL, the HiddenFromAddressListsEnabled attribute is set to true. Thus to find a list of all users hidden from the GAL, you just list all users with this attribute enabled, which you can do by using the following command:

Get-Mailbox | Where {$_.HiddenFromAddressListsEnabled -eq $True} | Select Name

About the Author(s)

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like