How to monitor email statistics
		
	Use Get-mailboxfolderstatistics to see how many emails received in last 7 days.
Use get-messagetrackinglog to view emails with eventid receive in last 7 days.  this has similar example.
http://social.technet.microsoft.com/Forums/en/exchangesvrtransport/thread/94ebbc48-2f14-4b69-9477-77e2e0d06453		
				August 28th, 2012 10:43am
			You can do like this:
$EndDate=Get-date
$StartDate=$EndDate.adddays(-7)
Get-Messagetrackinglog -Start $StartDate -End $EndDate -recipients 
username@domain.com -EventID Deliver| measure-object| fl Count
Thanks,
EvanEvan Liu
TechNet Community Support		
				Free Windows Admin Tool Kit Click here and download it now
					August 29th, 2012 6:26am
			Hi,
Thanks
"Use Get-mailboxfolderstatistics to see how many emails received in last 7 days." - do you have an example?
"Get-mailboxfolderstatistics -Identity <mailboxname> -FolderScope Inbox..................." can't find the correct parameter !Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.		
				September 8th, 2012 4:45am
			You can do like this:
$EndDate=Get-date
$StartDate=$EndDate.adddays(-7)
Get-Messagetrackinglog -Start $StartDate -End $EndDate -recipients 
username@domain.com -EventID Deliver| measure-object| fl Count
Thanks,
EvanEvan Liu
TechNet Community Support		
				Free Windows Admin Tool Kit Click here and download it now
					September 8th, 2012 6:25am
			Hi,
1. I would like to know how many mails a mailbox has recieved for a certain period,
for example over the last 7 days.
2. I would like to know how many mails a mailbox has recieved for a certain period,
for example over the last 7 days, and how many of the mails are from "inside" the domain, and how many mails are from "outside".
Is it possible to get a report, if yes, how? SCOM 2007/2012 ? 3rd party app. ?Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.		
				September 8th, 2012 7:15am
			Use Get-mailboxfolderstatistics to see how many emails received in last 7 days.
Use get-messagetrackinglog to view emails with eventid receive in last 7 days.  this has similar example.
http://social.technet.microsoft.com/Forums/en/exchangesvrtransport/thread/94ebbc48-2f14-4b69-9477-77e2e0d06453		
				Free Windows Admin Tool Kit Click here and download it now
					September 8th, 2012 10:55am
			

