Friday, 17 April 2009
How to find the last logon time by a mailbox user in Microsoft Exchange 2007
If you need to get the last logon time by mailbox user in Exchange 2007 one of the easiest ways is to fire up the Exchange Management Shell and execute the cmdlet:
get-mailboxstatistics
The default setting of this option will give you the display name, the total numbers of items in the mailbox (handy), storage limit status (very handy), and the last logon time (the bit we need).
The information we are provided with is useful but you many notice it is not sorted by DisplayName, you can fix this with:
get-mailboxstatistics | sort-object DisplayName
Related
- Exchange 2007 Mailbox Statistics
- Mailbox Database Journal In Exchange 2007
- How I give a gentle reminder to users to keep their mailbox in order
- Neigbourly tensions: Exchange Server 2007 and Exchange 2000
- Dealing with inconsistent state error in Exchange 2007


