That is correct.
'False' -ne $false
--
............... All new, all fresh ..............
http://www.leedesmond.com/weblog/
"jim" wrote:
> Never mind. I needed to add a "$" before False. That is,
>
> $allmbx= get-mailbox -resultsize unlimited| where
> {$_.UseDatabaseQuotaDefaults -eq $false}
>
>
>
> "jim" <jim@nospam.com> wrote in message
> news:eSywCFMOHHA.3212@TK2MSFTNGP02.phx.gbl...
> > 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!
> >
> >
> >
>
>
>