E
E
EvgeniyKhodos2021-03-26 12:22:18
Mail server
EvgeniyKhodos, 2021-03-26 12:22:18

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

1 answer(s)
R
Roman Bezrukov, 2021-03-27
@EvgeniyKhodos

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 question

Ask a Question

731 491 924 answers to any question