You might want to back up the list of address spaces in a Microsoft Exchange 2010 send connector, just for backup purposes, migration, or testing.
Use this code to extract the address spaces and pipe them into a csv file. Then open in excel, using space characters as the delimiter (multiple spaces count as a single delimiter).
(Get-SendConnector -Identity "ADDRESSSPACENAME").AddressSpaces | ft -autosize > c:\temp\addressspaces.csv
Spread the love
Nice tip, thanks for sharing.
You have no idea how much this helped me. I was so stuck on how to get this information. You made it look so easy. I can’t thank you enough!