Get-Mailbox -ResultSize Unlimited -Filter { UseDatabaseQuotaDefaults -eq $False } `
-OrganizationalUnit "OU=somewhere,DC=domain,DC=com" |
Select-Object Name, Database, UseDatabaseQuotaDefaults, IssueWarningQuota, `
ProhibitSendQuota, ProhibitSendReceiveQuota |
Export-CSV "SomeFile.csv"
|