Use PowerShell to export a list of mail enabled users from Exchange 2010:
Get-User -ResultSize Unlimited | Where { $_.RecipientType -eq ‘UserMailbox’ } | ft firstname,lastname,samaccountname
The following command will export the list to a CSV file:
Get-User -ResultSize Unlimited | Where { $_.RecipientType -eq ‘UserMailbox’ } | select firstname,lastname,samaccountname | export-csv c:\MailEnabledUsers.txt
Thank you! :)
[…] Resource: https://marckean.com/2012/10/15/export-list-of-mail-enabled-users-from-exchange-2010/ […]