I have 25 user with exchange email boxes exchange 2007 in sbs2008 fe<\/p>\n
Is there a way to see or show each user and the size of there mailbox to see who is using too much?<\/p>\n
Thanks<\/p>","upvoteCount":3,"answerCount":9,"datePublished":"2013-03-27T02:10:46.000Z","author":{"@type":"Person","name":"MI50","url":"https://community.spiceworks.com/u/MI50"},"acceptedAnswer":{"@type":"Answer","text":"
I use this for the whole batch<\/p>\n
Get-MailboxDatabase \"<insert database name or don’t enter one for all DB’s>\" | Get-MailboxStatistics | Sort totalitemsize -desc | ft displayname, totalitemsize, itemcount (optional | Select –first 25) >> C:\\*name_of_file*.txt\n\n<\/code><\/pre>\nOr this<\/p>\n
get-mailboxstatistics | fl displayname,totalitemsize\n<\/code><\/pre>\nOr this,<\/p>\n
Get-Mailbox -Identity \"name_of_user\" | fl\n<\/code><\/pre>\nIf you have limits each of those in powershell will show what you want. The first one, outputs to a text file if you want with the top 25 offenders. (make sure to change the optional parameters in that code.)<\/p>\n
-Jay<\/p>","upvoteCount":0,"datePublished":"2013-03-27T02:29:47.000Z","url":"https://community.spiceworks.com/t/exchange-mailbox-sizes/202908/2","author":{"@type":"Person","name":"jay6111","url":"https://community.spiceworks.com/u/jay6111"}},"suggestedAnswer":[{"@type":"Answer","text":"
I have 25 user with exchange email boxes exchange 2007 in sbs2008 fe<\/p>\n
Is there a way to see or show each user and the size of there mailbox to see who is using too much?<\/p>\n
Thanks<\/p>","upvoteCount":3,"datePublished":"2013-03-27T02:10:46.000Z","url":"https://community.spiceworks.com/t/exchange-mailbox-sizes/202908/1","author":{"@type":"Person","name":"MI50","url":"https://community.spiceworks.com/u/MI50"}},{"@type":"Answer","text":"
Okay Jay something new Powershell…Ive seen this when I type in the search power for power options this pulls up I just close it
but now its time to use it…Okay…<\/p>\n
Forgive me the first one will give me all stats with user for thewhole mailbox?<\/p>\n
how do i find the database name? is it the mailbox.database.edb?<\/p>\n
Thank you for you time and help<\/p>","upvoteCount":0,"datePublished":"2013-03-27T02:55:40.000Z","url":"https://community.spiceworks.com/t/exchange-mailbox-sizes/202908/3","author":{"@type":"Person","name":"MI50","url":"https://community.spiceworks.com/u/MI50"}},{"@type":"Answer","text":"
That will give the first 25 users, their display name, toal size of mailbox in bytes and item count. See the screenshot below for an example I ran from my lab setup. And make sure you are running this from the Exchange management shell, not just regular powershell or it won’t work.<\/p>\n
-Jay<\/p>\n