Let's say we need to get the Mailbox Size of the user: ITServices
[PS] C:\Windows\system32>Get-MailboxStatistics -Identity ITServices | Format-List -property displayName, TotalItemSize
[PS] C:\Windows\system32>Get-MailboxStatistics -Identity ITServices | Format-List -property displayName, TotalItemSize
DisplayName : ITServices
TotalItemSize : 26.32 MB (27,601,859 bytes)
So In order to get the mailbox size
, you have to get the MailboxStatistics, but if you use only the command: Get-MailboxStatistics -Identity ITServices , you will not get the mailbox size, you will get the ITemCount and the storageLimitStatus
DisplayName ItemCount StorageLimitStatus LastLogonTime
----------- --------- ------------------ -------------
ITServices User 1792 BelowLimit 22/08/2011 5:57:29 PM
To show all values of the Mailbox you need to use the command:
Get-MailboxStatistics -Identity ITServices | Format-List
If you need to show only the display name and the size value, then you must specify to show the properties "displayName" and "totatItemSize" only:
Get-MailboxStatistics -Identity ITServices | Format-List -property displayName, TotalItemSize
If you are looking or a System admninistrator position, create a profile in the recruitment website below:
http://www.security-architecture.com/
I hope this was helpful, and I would like to thank you for reading.
No comments:
Post a Comment