Link to home
Start Free TrialLog in
Avatar of bains1000
bains1000Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Exchange 2007 list of all smtp addresses

Hi

Is there a simple way of pulling a report of all the email addresses in use on an exchange 2007, we have a few accounts with multiple alias and need a quick way to list them all.

thanks.
Avatar of Jdtuck
Jdtuck
Flag of United States of America image

Avatar of James
From Exchange Command Shell

get-mailbox | select displayname,primarysmtpaddress > C:\whatever.txt
ASKER CERTIFIED SOLUTION
Avatar of James
James
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bains1000

ASKER

Jbond i tried your first post "get-mailbox | select displayname,primarysmtpaddress > C:\whatever.txt"
this format is great however it is only giving me the primary smtp address,  is there a way to adopt this to give me any alias as well?

thanks
If you try my second one this should work.
In my second comment this will provide you with all the smtp alias addresses.
Thanks worked a treat