Managing Calendar Permissions in O365 with PowerShell
Getting Calendar Permissions: First, use: Get-MailboxFolderPermission -Identity [email protected]:calendar PowerShellCopy Make sure to add the relevant ‘User’ Example below: This will then tell you who has permissions for the user’s calendar and what ‘Access Rights’ they have Adding Calendar permissions: First, use: Add-MailboxFolderPermission -Identity [email protected]:calendar -User [email protected] -AccessRights PowerShellCopy Make sure to add the relevant ‘Access […]