Categories
PowerShell

Compare the Exchange Alias to the Primary SMTP Address

Here’s a data quality report for an Exchange environment. This command looks for Alias values that do not match the “username” portion of the PrimarySMTPAddress values. Any discrepancies are returned.

Get-Mailbox -ResultSize unlimited | where {$_.PrimarySmtpAddress.ToString() -notlike $_.Alias.ToString()+"@*"} | ft name, Alias, PrimarySmtpAddress

By Tommy Doan

BF-ITS(Systems)

2 replies on “Compare the Exchange Alias to the Primary SMTP Address”

Leave a Reply

Your email address will not be published. Required fields are marked *