Forum Discussion
Marvin Oco
Jul 01, 2019Iron Contributor
powershell script to export display name and primary smtp address of all users
what is the powershell script to export display name and primary smtp address of all users? thanks
kathy
Jul 01, 2019Brass Contributor
You can run below code to export all office 365 mailboxes' DisplayName and PrimarySMTPAddress to CSV file.
Get-Mailbox -Resultsize Unlimited | select DisplayName,PrimarySMTPAddress | Export-csv E:\O365Users.csv -NoType -Append
If you need additional attributes like license details, mfa status and mailbox permissions, you can refer this blog: https://o365reports.com/2019/05/09/export-office-365-users-mfa-status-csv/