The following command works fine to extract the requested information to a CSV. I am looking to add the "jobtitle" of the maibox users to the following:
Get-MailboxStatistics -server "ex001" | where {$_.objectClass -eq "Mailbox"} |Sort -property totalitemsize -descending | select-objectdisplayname, ItemCount, storagelimitstatus, @{expression={$_.TotalItemSize.Value.ToMB()};label="size(MB)"} | Export-csv C:\temp\mbxusers.csv
thanks in adv.