How to list all valid e-mail addresses

  • Thread starter Thread starter Danny
  • Start date Start date
D

Danny

Hi all,

Does anyone know of a way for me to list all of the e-
mail addresses currently assigned to users. This
organisation is currently undergoing a name change so
everyone has at least two e-mail addresses and some
people have more. Is there an easy way for me to list all
the different e-mail addresses everyone is using or am I
going to have to go into the properties of each
individual user and click on the e-mail addresses tab to
see what e-mail addresses that user currently has?

Thanks in Advance,
Danny
 
There are a few ways you can do this type of bulk query.
I find the CSVDE and LDIFDE tools good for this. LDIFDE
is slightly more flexible in that you can use it to modify
existing entries.

Here's an example of a search for all users. The email
addresses are provided in the output file.

ldifde -f c:\temp\email.txt -d CN=Users,DC=mydom,DC=com -r
(objectCategory=person) -p subtree -l mail,proxyAddresses

Tony
www.activedir.org
 
Back
Top