Get Last Logon Time, Last Logoff time, Mailbox size and Item Count (Exchange 2007)
From ben.goodacre.name/tech
This feature was removed from the Exchange 2007 UI.
From the Exchange Management shell:
Get-MailboxStatistics | Select-Object DisplayName, LastLogonTime, LastLogOffTime | Format-Table
The item count and mailbox size can also be obtained:
Get-MailboxStatistics | Select-Object DisplayName, ItemCount, TotalItemSize | Format-Table