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.
August 14, 2008
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
You May Also Like