|
Exchange 2007 PowerShell.. Hopefully someone here is familiar with the Exchange 2k7 PowerShell..
I'm trying to export to CSV the LastName/FirstName of all users whose
mailboxes are not using the default database quota.
$allmbx= get-mailbox -resultsize unlimited| where
{$_.UseDatabaseQuotaDefaults -eq 'False'}
$allmbx | get-user -resultsize unlimited | select-object LastName, FirstName
| Export-Csv c:\defsize.csv
It generated the CSV alright, but it appeared to contain a lot more people
than I would've expected. I did a quick check on a handful of them and they
all had the default database quota parameter set to True.
Thanks in advance! |