Forum Discussion
spectreker
Mar 22, 2024Copper Contributor
Need to Find the owner of a Calendar that is being Shared in the Organization
Good morning, I work for a MSP and we just acquired a new Accounting company. They have few calendars being shared with some of the users and now the owner is asking to give access to these calen...
dhako94
Mar 22, 2024Copper Contributor
spectreker Hi,
I think someone has created and shared a calendar from his own mailbox. can that be?
If so, you can query this via Powershell
1. connect to the Exchange Online
2. do the following, replace the CalendarName with the name of the calendar or with a part of the name of the calendar: Get-Mailbox -ResultSize unlimited | Get-MailboxFolderStatistics -FolderScope Calendar | select Name, FolderPath, Identity | Where-Object {$_.Name -like '*CalenderName*'}
then you can find out which mailbox the calendar is in. i recommend migrating the calendar to an O365 group.