Mailbox Size in KB
hallo
i want to know is there any way to see the mailbox size of a user in the KB? it shows in bytes whichi dont like.
thanx
November 14th, 2008 7:39pm
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0in;margin-right:0in;margin-bottom:10.0pt;margin-left:0in;line-height:115%;font-size:11.0pt;font-family:'Calibri','sans-serif';}
.MsoChpDefault
{;}
.MsoPapDefault
{margin-bottom:10.0pt;line-height:115%;}
@page Section1
{size:8.5in 11.0in;margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
{page:Section1;}
Hello,
Open Exchange Management Shell and type the following cmdlet:
Get-MailboxStatistics username | ft DisplayName,@{ expression={$_.TotalItemSize.Value.ToKB()}}
To list the mailbox size in MB:
Get-MailboxStatistics username | ft DisplayName,@{ expression={$_.TotalItemSize.Value.ToMB()}}
Refrences:
Getting Mailbox Statistics in Exchange 2007 on MSExchange.org
Free Windows Admin Tool Kit Click here and download it now
November 14th, 2008 7:43pm
Hi Bob,
You can play with powershell to get whatever you want
I had documented it with some examples, refer below article...
EMC - Where are Mailbox Total Items & Size (KB)Columns?http://exchangeshare.wordpress.com/2008/04/23/emc-where-are-mailbox-total-items-size-kb-columns/
November 14th, 2008 7:51pm
thank you for help
Free Windows Admin Tool Kit Click here and download it now
November 17th, 2008 9:08am