Forum Discussion
how to know the owner of a calendar ?
If you want to do it via PowerShell, use Get-MailboxFolderPermission, however you need to know the mailbox in which the Calendar resides.
Hi VasilMichev ,
I found a solution with the following two powershell commands:
Get-EXOMailboxFolderStatistics -Identity "User_Mailbox" -FolderScope Calendar | Format-Table -Property name, CreationTime, FolderPath
Example :
Get-EXOMailboxFolderStatistics -Identity lorenzo_Mailox@ -FolderScope Calendar | Format-Table -Property name, CreationTime, FolderPath
The cmdlet below gives me the path and name of the calendar that the user owns.
Get-MailBoxCalendarFolder -identity User_MailBox: \ "path_of_the_calendar" | format-list -Property identity, CalendarShareAuthorizationLevel, CalendarShareOwnerSmtpAddress
example :
Get-MailBoxCalendarFolder -identity lorenzo_Mailox@:Calendar\ Reunion | format-list -Property identity, CalendarShareAuthorizationLevel, CalendarShareOwnerSmtpAddress
Have a nice day