Avatar of Joel Brown
Joel Brown
Flag for United States of America asked on

Exchange 2010 Mail Flow Tracking

I have always struggled with the tools supplied in exchange to manage/track message flow and find them inadequate at best.  I usually use the console which then opens an OWA login and then asks a series of questions to get filter our search.

On the current situation I'm looking and can find an email that should have been delivered to multiple people within the same domain.  It shows its pending and is taking longer to deliver then normal.   I've checked the queues but don't see any messages waiting to be processed.

I'd be interested in an aftermarket product that does a great job at helping track messages without the headaches the exchange tools give.

Thanks ....
Exchange* job* OWA

Avatar of undefined
Last Comment
Albert Widjaja

8/22/2022 - Mon
Albert Widjaja

Have you tried to execute the Powershell script below that you can customize ?

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://YourEXCHANGECAS-Server/PowerShell/ -Authentication Kerberos
Import-PSSession $Session -AllowClobber
Import-Module ActiveDirectory -ErrorAction STOP

Get-TransportServer | Get-Messagetrackinglog -Sender "sender@domain.com" -Recipients "receipient@domain.com" -EventID "RECEIVE" -Start "DD/MM/YYYY 9:00:00 AM" -End "DD/MM/YYYY 5:00:00 PM" | ft -wrap Timestamp, Source, Sender, Recipients, MessageSubject, TotalBytes >> C:\Temp\Result.txt

Open in new window

Joel Brown

ASKER
I have limited experience using PS and would need to become more familiar to feel comfortable using it.  I would prefer to have a gui application at this point if possible ....
Albert Widjaja

Hi JT,

No that I know of for that, but it is quite simple, all you need to do is to open up Powershell ISE and then customize the PowerCLI command above:

YourEXCHANGECAS-Server --> your Exchange server
-Sender "sender@domain.com"
-Recipients "receipient@domain.com"
-EventID "RECEIVE" -Start "DD/MM/YYYY 9:00:00 AM"
 -End "DD/MM/YYYY 5:00:00 PM"
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Joel Brown

ASKER
I am able to run your command but am not sure what I"m looking for in the results .....  here they are .....

++++
Timestamp           Source              Sender              Recipients          MessageSubject               TotalBytes
---------           ------              ------              ----------          --------------               ----------
4/11/2017 4:13:12 P STOREDRIVER         candicew@dbjortho.c {adrib@dobend.com,  :)                                35328
M                                       om                  candaces@dobend.com                                        
                                                            , dhayes@dbjortho.c                                        
                                                            om, donnah@dobend.c                                        
                                                            om, dvangordon@dobe                                        
                                                            nd.com, heatherd@do                                        
                                                            bend.com, jenniferk                                        
                                                            @dobend.com, juliej                                        
                                                            @dbjortho.com, Kimb                                        
                                                            erlyk@dbjortho.com,                                        
                                                             tpeterson@dobend.c                                        
                                                            om}                  
++++
ASKER CERTIFIED SOLUTION
Albert Widjaja

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Albert Widjaja

example provided.