Skip to main content

How to check exchange message Tracking Logs 2010/2013

Its nothing but taking a log to understand how much transaction which worked in Mailbox Server in other words it will be recipients and Senders transitions. How we will get this out?


Run following (PowerShell)

 

Get-transportserver | get-messagetrackinglog -start "08/10/2016" -end "08/20/2016" -Resultsize Unlimited | export-csv C\:messagetrackinglog.csv 

 

Get-TransportServer will help you to get connected to all the Transport Server Roles which is in your domain and the result will move to Get-MessageTrackingLog to perform Message Tracking Log for given duration. Not only duration you need define Result size also because if you try Get-MessageTrackingLog it only give 1000 messages.

 

Note: Define a duration for reduce the time and also size of the data.


Will try different scenarios



 C:\>Get-MessageTrackingLog -Sender user31@pfelabs.local - you need to change the domain try on your lab or Live environment






 
Result
EventId  Source   Sender                            Recipients                        MessageSubject
-------      ------       ------                                  ----------                            --------------
HAREC... SMTP     User31@pfelabs.local              {User32@pfelabs.local}            Try to track
HADIS... SMTP     User31@pfelabs.local              {User32@pfelabs.local}            Try to track
Send some sample mails up and down and also with gmail account then Try following too and see what it will create
 
[PS] C:\>Get-MessageTrackingLog -sender "user31@pfelabs.local" -Recipients user34@pfelabs.local | ConvertTo-Html > C:\message.html
[PS] C:\>Get-MessageTrackingLog -sender "user31@pfelabs.local" -Recipients user34@pfelabs.local | ConvertTo-Csv > C:\message.csv
[PS] C:\>Get-MessageTrackingLog -Recipients *@gmail.com
How do i check on GUID/ EAC (Exchange Admin Center)

Go to your EAC using Exchange Admin and try following. it will show default 30 days of messagetrackinglogs.

you will get option to choice from recipient address, received from and subject






Hope this is help :)

Enjoy!!!

Comments

  1. Wow, incredible weblog format! How long have you been running a blog for? you make running a blog look easy. The whole look of your web site is magnificent, well the content material! [pii_email_027301e7af80ce24cbce]

    ReplyDelete
  2. We still cannot quite believe that It was not respectable often be those checking important points located on yuor web blog. Our kids and that i are sincerely thankful for your personal generosity also giving me possibility pursue our chosen profession path. Published information Manged to get with your web-site. [pii_email_027301e7af80ce24cbce]

    ReplyDelete
  3. Very nice article, I enjoyed reading your post, very nice share, I want to twit this to my followers. Thanks!. gps equipment tracking

    ReplyDelete
  4. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Skype for Business announces new Mac client and new mobile sharing experiences

Today Skype for business team publically announce that Skype for business Mac is available to download ( URL ) Its is supporting edge to edge video and full immersive content sharing and viewing, You can get good collaboration experience. And they have updated Skype Operation Framework also about this update. Please refer to them https://www.skypeoperationsframework.com/blogs Enjoy!!!

This Web browser or operating system might not be compatible with Microsoft Silverlight

Crazy error getting from Silver Light while your trying to open newly installed skype for business 2015 on top of Windows Server 2016. Since i installed Silverlight already i was checking control panel the version what i installed its latest and which you can confirm by going to this URL -  https://www.microsoft.com/getsilverlight/locale/en-us/html/Microsoft%20Silverlight%20Release%20History.htm     According to above web and control panel it says same version but my setup cant access the configuration wizard getting following error. to fix nothing do just that add this URL ( https://<pool01FQDN>/cscp to trusted sites and refresh the page then this will go. Note: This error will mislead to check on other browser version and etc and you might check supported version for WinSvr 2016. No required those. Hope this will save your time. Please like FB pages you find more - https://www.facebook.com/office365wwc/   SfB - https://w...

Microsoft Teams user administration using Set-CsOnlineVoicemailUserSettings

Now tenant admin can help with user for custom greetings,  DefaultGreetingPromptOverwrite and  DefaultOofGreetingPromptOverwrite many other user settings on behalf of users. This may help to end users when they are away to set up forwarding rules to another colleague or external number etc. Set-CsUserCallingSettings  -Identity "madushka@abc.com"  -IsForwardingEnabled $True -ForwardingType Immediate -ForwardingTarget taniya@abc.com -ForwardingTargetType SingleTarget - Verbose Note : You must have PhoneSystem License attached for you to have this forwarding to a another person. Basically both users must have PhoneSystem License.  Forward to external number   when you try this make sure you are using E.164 standard for phone numbers.  Set-CsUserCallingSettings -Identity " madushka@abc.com"   -IsForwardingEnabled $True -ForwardingType Simultaneous -ForwardingTargetType SingleTarget -ForwardingTarget "+1365888xxx"  - Verbose Note : You...