Test sending e-mails from mailserver using PowerShell

I’ve been using Telnet for a while now to test sending emails from a SMTP relay server. But if you are using a Windows server/client, the easier way is to use Powershell, as Telnet is unforgiving for syntax errors. If you are directly logged in to the SMTP server, you can use this PowerShell code: …

Message Tracking with Powershell in Exchange

This is an example of a Message Tracking command that I use most: Get-Messagetrackinglog -ResultSize Unlimited -Recipients:user@contoso.com -EventID “RECEIVE” -Start “09/25/2016 4:30:00 PM” -End “09/30/2016 5:17:00 PM” | select-object eventid,timestamp,messageid,sender,recipients,messagesubject | Out-GridView These are the parts that will improve search results and make it easier for you to understand the results: -ResultSize Unlimited specifies the …