Answer the question
In order to leave comments, you need to log in
How to download the list of external recipients from Exchange for the last month (to whom exactly did our users send letters)?
In an excel or txt file, so that later this file can be used to send letters. There are commands for your own Exchange addresses, but I didn’t figure it out with external ones.
Get-MessageTrackingLog does something similar, but some very large data array is unloaded there.
Answer the question
In order to leave comments, you need to log in
Get-MessageTrackingLog -Start (Get-Date).AddDays(-30) -ResultSize unlimited | Where {[string]$_.recipients -notlike "*@yourdomain.com"} | export csv...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question