Useful script to export all the Primary email addresses and aliases to a simple CSV file which can be read easily. This outputs the file to c:\ for example but can be changed. Get-Mailbox -ResultSize Unlimited |Select-Object DisplayName,ServerName,PrimarySmtpAddress, |Where-Object {$ -ceq “smtp”} | ForEach-Object {$}}} | Export-CSV c:\ -NoTypeInformation Hope…
Continue Reading »