Email Counts
I am looking to get monthly counts on incoming and outgoing Emails on my Exchange 2007 Server. I can run a script monthly, or daily if needed I just want to see the total volume. Any thoughts on this would be great.Joel Gallay
March 6th, 2009 11:44pm

Hi Joel,Basically you need to get accurate information from Message Tracking logs, if you have multiple Exchange 2007 Hub/Edge transport server then you need to get count for all of them.To get the count the number of outgoing emails.Get-MessageTrackinglog -Start "MM/DD/YYYY" -End "MM/DD/YYYY" -Event SEND -ResultSize Unlimited | Measure-ObjectTo get the count the number of incoming emails.Get-MessageTrackinglog -Start "MM/DD/YYYY" -End "MM/DD/YYYY" -Event Receive -ResultSize Unlimited | Measure-ObjectReferences:How to Configure Message Trackinghttp://technet.microsoft.com/en-us/library/aa997984.aspxHow to Search Message Tracking Logshttp://technet.microsoft.com/en-us/library/bb124926.aspxExchange 2007 Message Tracking (Part 1)http://www.msexchange.org/tutorials/Exchange-2007-Message-Tracking-Part1.htmlOr you can use some third-party utility to get this information regularly or in more fancy graphical way. Third party utility also uses message tracking logs internally to get similar information.Check out Message Stats from Quest...http://www.quest.com/messagestats/Amit Tank | MVP - Exchange | MCITP:EMA MCSA:M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
March 7th, 2009 1:07pm

Very good suggestions! Amit! And the thread below may help you as well: Count number of daily emails on Exchange 2007
March 9th, 2009 6:01am

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

Other recent topics Other recent topics