How to find all AD users that are hidden from Exchange?
I have a need to find all users in AD that are marked "Hide from Exchange address lists". Ideally, I would like to only show those users that are NOT in a specific OU, as well. My usual duties...
View ArticleHow to find all AD users that are hidden from Exchange?
Get-Mailbox -ResultSize unlimited |Where{$_.HiddenFromAddressListsEnabled -eq $true}Powershell 3.0
View ArticleHow to find all AD users that are hidden from Exchange?
i am not a powershell user. but this software might help you:http://www.cjwdev.co.uk/Software/ADTidy/Info.html
View ArticleHow to find all AD users that are hidden from Exchange?
If it is an attribute in AD you can query on it in ADUC.(&(objectclass=user)(msExchHideFromAddressLists=TRUE))
View ArticleHow to find all AD users that are hidden from Exchange?
LWBM wrote:Get-Mailbox -ResultSize unlimited |Where{$_.HiddenFromAddressListsEnabled -eq $true}Powershell 3.0 TextGet-Mailbox -ResultSize unlimited | Where{$_.HiddenFromAddressListsEnabled -eq $true}...
View ArticleHow to find all AD users that are hidden from Exchange?
LWBM wrote:Get-Mailbox -ResultSize unlimited |Where{$_.HiddenFromAddressListsEnabled -eq $true}Powershell 3.0 If you have PowerShell V3 or above, you cam simplify...
View ArticleHow to find all AD users that are hidden from Exchange?
Thank you LWBM, mxtj and Rockn for the replies.Rockn, can you explain a bit more on how to write a query? Thanks.I figured out how to use the exact query you provided, now I will just have to see if I...
View ArticleHow to find all AD users that are hidden from Exchange?
(&(&(objectCategory=organizationalUnit)(!ou=NAMEOFOU)(&(objectclass=user)(msExchHideFromAddressLists=TRUE))))You can do pretty much anything you want from the GUI using a combination of...
View Article