As an Exchange Admin you might be tasked to find all mailboxes that have no storage limits or custom ones. You cannot achieve this using the Exchange Management Console but rather using the Exchange Management Shell.

Open up the Exchange Management Shell and run the following command:

  • get-mailbox | where {$_.UseDatabaseQuotaDefaults -eq $False} | ft name,prohibit*,issue*
Find exchange server 2010 mailboxes without storage quotas
Find Exchange Server 2010 Mailboxes without Storage Quotas 1
  • This command as run above will list all the mailboxes with custom/no quotas.

You can also export this to a CSV file. To do this you can run the following command in the EMS:

  • get-mailbox | where {$_.UseDatabaseQuotaDefaults -eq $False} | select name,prohibit*,issue* | Export-CSV quota.csv -NoTypeInformation

Hope it helps.

    wpChatIcon

    Discover more from COLLABORATION PRO

    Subscribe now to keep reading and get access to the full archive.

    Continue reading