Forum Discussion

Marvin Oco's avatar
Marvin Oco
Iron Contributor
Jul 01, 2019

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

2 Replies

  • kathy's avatar
    kathy
    Brass Contributor

    Marvin Oco 

    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/

Resources