System SBS Server 2008fe with exchange 2007

How do I find out how big my total email boxes are or how much total mail in exchange?

4 Spice ups

http://community.spiceworks.com/scripts/show/383-push-exchange-2010-2007-data-to-spiceworks-and-bypass-powershell-security

This is a Powershell script that runs on your exchange server and pushes your Exchange data into Spiceworks. From there it will display all of that for you!

Capture.JPG

If you need help running it send me a message and I can see what I can do to help you.

Thanks BenJspain,

I don’t have spiceworks on the machined any other way of finding out?

Sorry. Here this is the right one. change the name to exchange_push.ps1 and run it from powershell 2.0 on your Exchange Server.

Open Powershell

Change directory to where ever this .ps1 file resides.

Type

./exchange_push.ps1 (SW server DNS name) -p (SW Port)

ie ./exchange_push.ps1 spicyPC -p 8080

exchange_push.ps1.txt (5.46 KB)

1 Spice up

make sure you have Powershell 2.0 or higher. If you have never run powershell on that PC before open powershell and type

Set-ExecutionPolicy Unrestricted (case sensitive)

This will allow you to execute powershell cmdlets.

Sorry BenJSpain,

None of this makes sense I don’t have spice works nor do I want to take the time to install it right now just need to know how to find out size of all users mailboxes total?

Thanks

Sorry I just assumed I guess… Consider Spiceworks. It’s free and will change your life.

In the meantime does this help?

No I suppose that won’t help if you want total

http://www.msexchange.org/articles-tutorials/exchange-server-2007/management-administration/getting-mailbox-statistics-exchange-2007.html

This should work as well

Get-MailboxStatistics -Database MB01 | Select DisplayName, LastLoggedOnUserAccount, ItemCount, TotalItemSize, LastLogonTime, LastLogoffTime | Export-CSV test.csv

3 Spice ups

This is awesome. Then if you want to see the total data you can plug that into a spreadsheet!

+1 on SeanMD’s solution, that is essentially what I use as well to determine this info.

Mike

Okay,

Guys I tried sean mds and got and error dont ask what it is it all red and to long to interpret the jist of it is I didnt enter something in under Database MB01 should i put something there with my setup if so then what??

Guy Ive never used this and am learing and do appreciate so much for the help …but need some more detail if can…

thanks

Where it reads MB01 change that to your mailbox database and you should be good to go.