Message Auditing
Hello, I Have Exchange 2010 Setup, I am looking for a tool that can perform Message Auditing/Alerting for us. Where I can receive a daily report that lists all of the messages that have been sent out through exchange with attachments (Information such as: From, To, Subject, Date/Time). Please suggest any options which your would recommend to achieve this task. Appreciated :)
February 1st, 2011 11:25pm

This will get message tracking logs for the last 24 hours: $Yesterday = (Get-Date).AddDays(-1); Get-MessageTrackingLog -Start $Yesterday This will do the same, only showing those with messages larger than 512KB: $Yesterday = (Get-Date).AddDays(-1); Get-MessageTrackingLog -Start $Yesterday | Where {$_.TotalBytes -GT 512KB} You could also throw a ConvertTo-HTML if you are feeling festive! This isn't foolproof, as messages may have small attachments, or non-attachment carrying messages could get very large. You could also try to grab messages with X-MS-Has-Attach headers, but I'm not sure how to best go about that. I think 3rd party tools would be better suited for this task. Mike Crowley Check out My Blog!
Free Windows Admin Tool Kit Click here and download it now
February 2nd, 2011 1:09am

Hi, Exchange 2010 has a feature names journaling which allow you record the Journal including the mail content and the totally email list, but there is no auditing function. Read the topic for understanding Journaling: http://technet.microsoft.com/en-us/library/aa998649.aspx
February 3rd, 2011 12:01am

Hi, Exchange 2010 has a feature names journaling which allow you record the Journal including the mail content and the totally email list, but there is no auditing function. Read the topic for understanding Journaling: http://technet.microsoft.com/en-us/library/aa998649.aspx
Free Windows Admin Tool Kit Click here and download it now
February 3rd, 2011 7:59am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics