Quantcast
Channel: Powershell – TheITBros
Viewing all articles
Browse latest Browse all 91

View Microsoft Exchange 2007 Mailbox Sizes

$
0
0
exchange-server-2007


This is a short tutorial for those who want a quick and easy way to view their mailbox sizes in Microsoft Exchange 2007.

Exchange 2007 Mailbox Sizes

Step 1

Launch the Exchange Management Shell.

exchange-2007-management-shell

Step 2

Copy and paste the following into the shell window.

Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft DisplayName,@{label=”TotalItemSize(MB)”;expression={$_.TotalItemSize.Value.ToMB()}},ItemCount 

management-shell-code

Step 3

The mailboxes will then be displayed in three columns, mailbox display name, mailbox size, and item count.

mailbox-sizes

Check out this link for information on exporting archive sizes via Powershell to CSV from Office 365 hosted archive services.

The post View Microsoft Exchange 2007 Mailbox Sizes appeared first on TheITBros.


Viewing all articles
Browse latest Browse all 91

Trending Articles