Jump to content

Recommended Posts

Posted

Hi,

 

I need to get a list of emails from a particular distribution list into a CSV file from Office 365, is there an easy non-convoluted way to do this? :)

 

Many thanks

Posted (edited)

No "easy non-convoluted way" but something like this using powershell

 

Get-DistributionGroup "Distribution Group Name" | Get-DistributionGroupMember | select DisplayName,Title,PrimarySMTPAddress | Export-CSV c:\temp\filename.csv

Edited by djm968
  • Thanks 1
Posted
Hi,

 

I need to get a list of emails from a particular distribution list into a CSV file from Office 365, is there an easy non-convoluted way to do this? :)

 

Many thanks

There's an easy, but slightly convoluted way which involves expanding the list in Outlook, copying then text importing into excel using semicolons as separators, then selecting the whole row and paste special-transpose into columns.

Does that help?

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...