Office 365 Exchange Online
1 TopicExchange Online - Shared Mailbox Size and UPN
Hi Community i try to create a list (and later export it to a CSV with the Size and UPN of all Sahremailboxes below 45GB Get-EXOMailbox -RecipientTypeDetails SharedMailbox -ResultSize Unlimited | Get-EXOMailboxStatistics | Where-Object {[int64]($PSItem.TotalItemSize.Value -replace '.+\(|bytes\)') -lt "45GB"} | Sort-Object TotalItemSize -Descending | Select-Object DisplayName, TotalItemSize, UserPrincipalName so far so good, but only with DisplayName. the UserPrincipalName i not see, is empty how can I include the UPN in my list?Solved2.3KViews0likes2Comments