Posts Tagged ‘Exchange’


In an Exchange environment you can view your mailbox size and free space from within Outlook.

Start Outlook and click on File:

image

You can also enable a status indicator that always shows:

In the main Outlook window (i.e. the Home tab) right click in the bottom left corner where it shows the Item and Unread message count.  Ensure Quota Information is ticked on the menu that pops up:

image

Should your space be low there are a couple of things you can do to free up space or to increase available space:

  1. Depending on your corporate policy you could ask your Exchange administrator to increase your mailbox space
  2. Delete old and/or redundant mails
  3. Use the Mailbox Cleanup wizard
  4. Archive mails

Note: that when you archive mails and you don’t have an online archive that the mails will be archived to a local PST file on your hard disc drive.  If your computer is lost or stolen or breaks then you will lose the archived mails, unless you have a backup of the PST file.

If the Quota Information option is not available then it most likely means that your quota is unlimited – i.e. there is no quota and your mailbox can grow in size as much as there is available space on the server.



Need a quick and dirty way to check the size of all users’s Deleted Items in your Exchange Mailbox Database – here is a nifty powershell script I concocted from a variety of other scripts on the net.

C:\Windows\system32>Get-Mailbox -ResultSize unlimited | Get-MailboxFolderStatistics | where{$_.FolderType -eq "DeletedItems"} | Select-Object Identity, {$_.FolderAndSubFolderSize.ToMb()}, ItemsInFolderAndSubFolders | Export-Csv c:\deleted_items.csv

It exports the data to a CSV file on the root of the C: drive (deleted_items.csv).

You can open this in Excel and easily use the SUM function to get a total of all the users’s Deleted Items folders.

(I wrote this on an Exchange 2010 server, it should work on Exchange 2007 also, but I haven’t tested this on Exchange 2007.)