Emails and Users list
Hey guys,
How can I get a list of emails and accounts they belong to in Exchange 2003, for example, I have user123@domain.com and user321@domain.comthat are both for user123@domain.com, when I look at this user in Outlook it only shows me the default email, but not
the other address it has.
I need all users with all emails associated to them.
How can I do that?
Thanks,
May 15th, 2012 3:12pm
Download the quest powershell works with ex 2003.
get-qaduser "*" -includeallproperties | select name, proxyaddresses
James Chong MCITP | EA | EMA; MCSE | M+, S+ Security+, Project+, ITIL msexchangetips.blogspot.com
Free Windows Admin Tool Kit Click here and download it now
May 15th, 2012 3:14pm
It looks like this would do it, but I'm not getting the complete fields, I'm getting "..." at the end of every proxyaddress, for example
John Doe {smtp:Jdoe@domain.com, X400:c=US;a= ;p=organization;o=Exchange;s=Doe;g=John;, SMTP:JDoe@domai...
For every single user, leaving me in the same position, I'm going to see if I can get this software to show me the whole thing, but so far, it's not doing it.
May 16th, 2012 12:04pm
No additional tools required:
Ldifde -d "DC=example,DC=co,DC=uk" -r "(&(mailnickname=*))" -l proxyAddresses -f c:\proxies.txt
where example.co.uk is the name of your Windows domain.
Simon. Simon Butler, Exchange MVP
Blog |
Exchange Resources | In the UK?
Hire Me.
Free Windows Admin Tool Kit Click here and download it now
May 16th, 2012 12:17pm
Much better, thanks a million.
May 16th, 2012 12:52pm