Quantcast
Viewing all articles
Browse latest Browse all 21

Weekly Exchange PowerShell Tip: Get List of SMTP Addresses and export to CSV

​To get a List of SMTP Addresses and export them to CSV: Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} | Export-CSV "C:\Temp\... (More)

Viewing all articles
Browse latest Browse all 21

Trending Articles