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 Powershell to export list of Exchange Server Mailbox email addresses
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed