Link to home
Start Free TrialLog in
Avatar of jbla9028
jbla9028Flag for United States of America

asked on

Powershell command to get user mailbox item counts by day.

I have a particular problem I'm trying to troubleshoot. I am looking for a powershell script to search a particular mailbox to figure out how many messages are in the inbox that were received on a particular day. I know I can get some info from the transport log powershell scripts but I would like the data directly from the user's inbox vs the transport logs. Any help is appreciated! We are running exchange 2010.
ASKER CERTIFIED SOLUTION
Avatar of Amit
Amit
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
There are scripts available on technet scripting gallery, you can find one to get the number of emails sent received per day.

You can also run Get-messagetrackinglog with a filter with event as DELIVER. you can also count the DELIVER event to get the number of emails delivered on a particular date.