Links
Tag Archives: Exchange Server
Powershell to export list of Exchange Server Mailbox email addresses
this powershell snippet will export all the SMTP email addresses used on a mail server, useful to document and check on them. ; Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,ServerName,PrimarySmtpAddress, @{Name=“EmailAddresses”;Expression={$_.EmailAddresses |Where-Object {$_.PrefixString -ceq “smtp”} | ForEach-Object {$_.SmtpAddress}}} ; Or to get … Continue reading
Posted in Hints and Tips
Tagged Exchange Server, Powershell, SMTP
Comments Off on Powershell to export list of Exchange Server Mailbox email addresses