Forum Discussion
O365 Group Mailbox Reports?
- Feb 08, 2018
The only reason you would need an EO2 license for shared/room mailbox is if you have enabled hold, and if you are applying a license anyway, you should just make it a user mailbox.
Onto the Groups question, you can simply use the "calculated property" method:
Get-UnifiedGroup | select DisplayName,Recipient*,@{n="Size";e={(Get-MailboxStatistics $_.Identity).TotalItemSize}} DisplayName RecipientType RecipientTypeDetails Size ----------- ------------- -------------------- ---- Unified MailUniversalDistributionGroup GroupMailbox 1.314 MB (1,377,400 bytes) First group MailUniversalDistributionGroup GroupMailbox 7.702 MB (8,076,248 bytes)
You can add other properties as needed, but in general is better to write a proper script instead of using oneliners and the pipeline.
The only reason you would need an EO2 license for shared/room mailbox is if you have enabled hold, and if you are applying a license anyway, you should just make it a user mailbox.
Onto the Groups question, you can simply use the "calculated property" method:
Get-UnifiedGroup | select DisplayName,Recipient*,@{n="Size";e={(Get-MailboxStatistics $_.Identity).TotalItemSize}} DisplayName RecipientType RecipientTypeDetails Size ----------- ------------- -------------------- ---- Unified MailUniversalDistributionGroup GroupMailbox 1.314 MB (1,377,400 bytes) First group MailUniversalDistributionGroup GroupMailbox 7.702 MB (8,076,248 bytes)
You can add other properties as needed, but in general is better to write a proper script instead of using oneliners and the pipeline.
- rayman3115Jul 15, 2019Copper Contributor
VasilMichev, does the EO2 license requirement for hold/retention apply to shared mailboxes created for O356 Groups and/or Teams as well?
- DeletedFeb 08, 2018
Thanks VasilMichev. The license question came up because our shared/resource MBX's are on hold via the 'Unified Retention Policy' and company policy.
AFAIK the Unified Retention Policy is auto-applied to all new <licensed> mailboxes. With that in mind, does that change the licensing calculus of a group mailbox if my company is expecting its contents (including SPO site contents) to be held and discoverable?