Outlook 2010 reporting larger deleted items folder than Exchange
We are running Exchange 2010 SP2. Currently if I run the following powershell command Get-Mailbox -Database "Mailbox Database Name" | Get-MailboxStatistics | ft displayname,totaldeleteditemsize,totalitemsize The output I receive for the "TotelDeletedItemSize" is 3.373MB. If I right click my "Deleted Items" in Outlook 2010 I get the reported _Server Data Size_ of 425MB. Right now we permantely delete items in the "Deleted Items" folder every 90 days based on a retention policy. Can anyone tell me why the numbers are different from the powershell command and Outlook?
May 8th, 2012 1:12pm

On Tue, 8 May 2012 17:04:22 +0000, John Scaramuzzo wrote: > > >We are running Exchange 2010 SP2. > >Currently if I run the following powershell command > >??Get-Mailbox -Database "Mailbox Database Name" | Get-MailboxStatistics | ft displayname,totaldeleteditemsize,totalitemsize > >The output I receive for the "TotelDeletedItemSize" is 3.373MB. If I right click my "Deleted Items" in Outlook 2010 I get the reported _Server Data Size_ of 425MB. > >Right now we permantely delete items in the "Deleted Items" folder every 90 days based on a retention policy. Can anyone tell me why the numbers are different from the powershell command and Outlook? Because the value reported by the get-mailboxstatistics is the size of the *recoverable* deleted items, not the size of the items that are still visible to you in the Deleted Items folder. --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
May 8th, 2012 10:30pm

Hello John, As far as I know, the TotalDeletedItemSize is the dumpster size, if you want to check the Deleted Items folder size, you can use this command to do that: Get-mailbox -identity usermailbox| Get-MailboxFolderStatistics -FolderScope all | sort-object FolderSize -Descending| FT Identity, FolderSize -wrap Here is a related document for you: Get-MailboxFolderStatistics http://technet.microsoft.com/en-us/library/aa996762.aspx Thanks, Evan Liu TechNet Subscriber Support in forum If you have any feedback on our support, please contact tngfb@microsoft.com Evan Liu TechNet Community Support
May 9th, 2012 1:55am

Is there a way to get this same output for every mailbox on the system?
Free Windows Admin Tool Kit Click here and download it now
May 9th, 2012 11:43am

If you want to get the output for every mailbox on the system, you can use this command: Get-mailbox -resultsize unlimited| Get-MailboxFolderStatistics -FolderScope all | sort-object FolderSize -Descending| FT Identity, FolderSize -wrap If you only need DeletedItems folder output for every mailbox on the system, you can use this command: Get-mailbox -resultsize unlimited| Get-MailboxFolderStatistics -FolderScope DeletedItems | sort-object FolderSize -Descending| FT Identity, FolderSize -wrap Thanks, Evan Liu TechNet Subscriber Support in forum If you have any feedback on our support, please contacttngfb@microsoft.com Evan Liu TechNet Community Support
May 9th, 2012 9:34pm

If you want to get the output for every mailbox on the system, you can use this command: Get-mailbox -resultsize unlimited| Get-MailboxFolderStatistics -FolderScope all | sort-object FolderSize -Descending| FT Identity, FolderSize -wrap If you only need DeletedItems folder output for every mailbox on the system, you can use this command: Get-mailbox -resultsize unlimited| Get-MailboxFolderStatistics -FolderScope DeletedItems | sort-object FolderSize -Descending| FT Identity, FolderSize -wrap Thanks, Evan Liu TechNet Subscriber Support in forum If you have any feedback on our support, please contacttngfb@microsoft.com Evan Liu TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
May 9th, 2012 9:44pm

On Wed, 9 May 2012 15:33:43 +0000, John Scaramuzzo wrote: >Is there a way to get this same output for every mailbox on the system? Just replace the "-identity usermailbox" with "-resultsize unlimited". --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
May 9th, 2012 11:01pm

On Wed, 9 May 2012 15:33:43 +0000, John Scaramuzzo wrote: >Is there a way to get this same output for every mailbox on the system? Just replace the "-identity usermailbox" with "-resultsize unlimited". --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
May 9th, 2012 11:11pm

Hello, Any updates on this issue? Thanks, Evan Liu TechNet Subscriber Support in forum If you have any feedback on our support, please contacttngfb@microsoft.com Evan Liu TechNet Community Support
May 13th, 2012 10:49pm

These answers solved my issue. Thanks for the help.
Free Windows Admin Tool Kit Click here and download it now
May 21st, 2012 10:07am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics