Forum Discussion
Robomurphy
Nov 24, 2022Copper Contributor
Mailbox usage/activity reports for Shared, room and equipment mailbox
Hi! We have a lot of Shared, room and equipment mailbox. I'm looking for a way to clean up the ones that's not in use. Is there anyway i can do this for Shared, room and equipment mailbox? The...
- Nov 24, 2022The Mailbox usage report should feature Shared mailboxes now. Apart from that, script away 🙂
Instead of looking at audit log events, you can do something simpler such as checking the newest message in Inbox/Sent items?
Get-MailboxFolderStatistics shared -FolderScope Inbox -IncludeAnalysis -IncludeOldestAndNewestItems | select *ItemReceivedDate,*ItemLastModifiedDate
VasilMichev
Nov 24, 2022MVP
The Mailbox usage report should feature Shared mailboxes now. Apart from that, script away 🙂
Instead of looking at audit log events, you can do something simpler such as checking the newest message in Inbox/Sent items?
Get-MailboxFolderStatistics shared -FolderScope Inbox -IncludeAnalysis -IncludeOldestAndNewestItems | select *ItemReceivedDate,*ItemLastModifiedDate
Instead of looking at audit log events, you can do something simpler such as checking the newest message in Inbox/Sent items?
Get-MailboxFolderStatistics shared -FolderScope Inbox -IncludeAnalysis -IncludeOldestAndNewestItems | select *ItemReceivedDate,*ItemLastModifiedDate
- RobomurphyNov 30, 2022Copper ContributorAha, did not know that! Thanks. That makes my job alot easier. Too bad it doesnt include room/equipment mailboxes aswell.
But maybe i use newest message in inbox/sent for that. Thanks for help!