Exchange 2003
Main Topics
Browse All TopicsI am in need of some way that i can Do a report on the Exchange Server and See what users in in What mail store, as well as how big is their mail store. and put this into an excell spreadsheet
Is this possible ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Then our best bet is WMI. How do you feel about a little bit of PowerShell? You'd need to grab it from here:
http://www.microsoft.com/w
It's useful to get a bit familiar with it, if you end up upgrading to Exchange 2007 you'll find you use PowerShell rather a lot.
Once you have that, you can potentially use my script here (attached as a code snippet at the bottom for convenience):
http://www.highorbit.co.uk
Simply open up PowerShell, and paste Get-2003MailboxStatistics into the prompt. Then it can be used to get all of the information Exchange can give you about the mailboxes.
PowerShell does not have to be installed on the Exchange Server itself, you could install it on your workstation or anywhere else. However, you'll need to be running PowerShell as an Exchange admin to be able to use the script (Run As will do).
Once it's all pasted in, you can run this command in the shell:
Get-2003MailboxStatistics -Server "ExchangeServer02"
And it will generate a report from your server. That can be exported to a CSV file with:
Get-2003MailboxStatistics -Server "ExchangeServer02" | Export-CSV "MailReport.csv"
And finally from there opened up in Excel.
HTH
Chris
Chris sorry to ping you here
need help on a related post
http://www.experts-exchang
Business Accounts
Answer for Membership
by: Chris-DentPosted on 2009-04-16 at 01:46:56ID: 24155555
But of course :)
But, hmm spreadsheets. I'm developing a bit of a hatred of scripting into Excel, CSV files okay? It'll still open with Excel and is far easier to write to ;)
And which version of Exchange are we talking about? There's no consistency, we would use different methods for every single version (2000 / 2003 / 2007).
Chris