Mailbox creating date and domain user owner and full mailboxes
Is there any easy way to list for all maiboxes, the date it was created and the account owner (domain account)? Also, is there anyway to list mailboxes which are "full", i.e. reached their capacity, i.e. poor mailbox management or could be a stale/unneccesary mailbox?
May 10th, 2011 8:16am

Get-Mailbox | ft DisplayName,WhenCreated,SamAccountName Get-Mailbox | Get-MailboxStatistics | ft DisplayName,TotalItemSize The second command won't tell you whether the user is near his limit, however. You'll need to get the UseDatabaseQuotaDefaults to find out if the mailbox has specific quotas or if it's using the mailbox database defaults. Then you have to get the ProhibitSendQuota and/or ProhibitSendAndReceiveQuota property of either the mailbox or the mailbox database as appropriate. That's a much more complicated script. Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
Free Windows Admin Tool Kit Click here and download it now
May 10th, 2011 11:20am

On Tue, 10 May 2011 15:12:04 +0000, Ed Crowley [MVP] wrote: > > >Get-Mailbox | ft DisplayName,WhenCreated,SamAccountName > >Get-Mailbox | Get-MailboxStatistics | ft DisplayName,TotalItemSize > >The second command won't tell you whether the user is near his limit, however. You'll need to get the UseDatabaseQuotaDefaults to find out if the mailbox has specific quotas or if it's using the mailbox database defaults. Then you have to get the ProhibitSendQuota and/or ProhibitSendAndReceiveQuota property of either the mailbox or the mailbox database as appropriate. That's a much more complicated script. You were SO close, Ed! :-) Get-Mailbox | Get-MailboxStatistics | ft DisplayName,StorageLimitStatus --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
May 10th, 2011 5:52pm

Thanks Excuse my ignorance, but what tool (or language) is used for running these commands? What priveleges are required to run these commands?
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2011 4:28am

On Wed, 11 May 2011 08:18:42 +0000, cf090 wrote: >Excuse my ignorance, but what tool (or language) is used for running these commands? Use the Exchange Management Shell. >What priveleges are required to run these commands? Exchange View-Only Administrator. --- Rich Matheisen MCSE+I, Exchange MVP --- Rich Matheisen MCSE+I, Exchange MVP
May 11th, 2011 10:36pm

Hi, These commands are run in Exchange Management Shell tool. After you install Exchange server, the management tools will be installed automatically. Go to Start->All Programs->Microsoft Exchange Server->Exchange Management Shell, and then you can run these commands in it. Hope this helps. ThanksPlease remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
May 12th, 2011 5:40am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics