Question : I need to get a list of all exchange users with statistics

Hi folks, 500 pointer here.

I need to create a list of all users on a domain with the following information:

Username, OU, Mailbox size, Mailbox warning, mailbox send limit, mailbox send/receive limit.

The domain is on server 2003, using Exchange 2007. I was thinking of using a PowerShell script, but have no background knowledge in programming them.
Hope you can help.

Answer : I need to get a list of all exchange users with statistics

Something like this should work.
Copy it in to a notepad, name it file.ps1
Then run it from the Exchange management shell.
It doesn't have all of the values that you want, I have copy and paste it from my own list of scripts, so you will need to adjust the list after "select" to adjust what the report contains.

Get-MailboxServer | Get-MailboxStatistics | select displayname,itemcount,totalitemsize | ConvertTo-HTML -head "Mailbox Size Report" | Out-File C:\Test.htm
Invoke-Expression C:\Test.htm

-M
Random Solutions  
 
programming4us programming4us