Office 365: Give one user access to all calendar’s
Firstly, connect to Exchange Online Powershell, like described here: https://docs.microsoft.com/en-us/powershell/exchange/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell?view=exchange-ps Then copy-paste this to a powershell.ps1 file, like calrights.ps1: Foreach ($mbx in get-mailbox){ $calendar=$mbx.alias+”:\Calendar” Add-mailboxfolderpermission -identity $calendar -user call -AccessRights Reviewer } USERNAME is the user you will give the rights…
Read more




