You will need a Windows machine with the Microsoft Outlook app installed to look up the mailbox's location.
- Start Powershell, doesn't have to be admin mode.
- Install the Exchange Online Powershell module: https://learn.microsoft.com/en-us/powershell/exchange/exchange-online-powershell-v2?view=exchange-ps#install-and-maintain-the-exchange-online-powershell-module
- Import the module:
Import-Module ExchangeOnlineManagement
- Login and connect:
Connect-ExchangeOnline -UserPrincipalName <UPN>
. The<UPN>
is your e-mail address. This will open the browser to authenticate you. - Get the shared calendar or mailbox path. This can be found in the calendar's Properties panel, in "General > Location" tab in the Outlook desktop app. For example, let's say it is
\\[email protected]\Calendar
, and the calendar's name isCalendar name
. - Get existing users' permissions:
Get-MailboxFolderPermission -Identity [email protected]:"\Calendar\Calendar name"
. Reference: https://learn.microsoft.com/en-us/powershell/m