Link to home
Start Free TrialLog in
Avatar of rmattke
rmattkeFlag for United States of America

asked on

exchange mail box - tool or app that can give detail info on all users mailbox size,folders etc.

Good Day ALL,

what tool can I use to get this info from our exchange server -2008

tool or app that can give detail info on all users mailbox size,folders etc

Name or e-mail address
# of E-mails currently in Inbox
# of Unread E-mails currently in Inbox
# Unread in Total Mailbox
Mailbox Size (Gb)
Avatar of Exchange_Geek
Exchange_Geek
Flag of India image

Similar question was asked before - read through the lengthy discussion, towards the end you'll find the corrected and solved script.

https://www.experts-exchange.com/questions/23283311/Mailbox-Cleanup-Unread-mail-31-days-old.html

Regards,
Exchange_Geek
Avatar of Manpreet SIngh Khatra
Firstly run a command

Get-MailboxStatistics -Identity "UserName" |fl (Just check what is the attributes you need and put that after FL in the last commands)
Get-MailboxFolderStatistics -Identity "UserName" |fl (Just check what is the attributes you need and put that after FL in the last commands)

Get-Mailbox | Get-MailboxFolderStatistics |fl (Attributes you need with "," comma in between)
Get-Mailbox | Get-MailboxStatistics |fl (Attributes you need with "," comma in between)  

- Rancy
Above command wouldn't help in getting data such as unread items.

Regards,
Exchange_Geek
Avatar of rmattke

ASKER

Is there anything else besides a script I can use?
ASKER CERTIFIED SOLUTION
Avatar of Manpreet SIngh Khatra
Manpreet SIngh Khatra
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rmattke

ASKER

I've requested that this question be deleted for the following reason:

rephrazing  question
Sorry to say but we answered your Query. But wont Object :(

- Rancy