Find Deferred Messages in Exchange
Here is a quick little one liner to find all the deferred messages with FromAddress, Recipients and DeferReason.
Get-TransportServer | Get-Queue | ?{$_.Identity -like '*submission*'} | get-message -IncludeRecipientInfo | ?{$_.Status -eq 'Retry'} | select FromAddress,Recipients, DeferReason
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.