1. הרשאות על לוחות שנה – Office 365 PowerShell

  2. .Open PowerShell as Administrator on your computer
  3. Type $liveCred = Get-Credential Enter admin Credentials like: [email protected]
  4. Passw0rd
  5. Type this in powershell: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection
  6. Then type Import-PSSession $Session
  7. Now you are in powershell command console of Exchange 365
  8. To change permission on mailbox folder like Calendar use this command-let: 1. If you need to add user with permission: Add-MailboxFolderPermission -Identity [email protected]:calendar -user [email protected] -AccessRights Editor 2. If user already exist in folder and you need to change permission status use this: Set-MailboxFolderPermission -Identity [email protected]:calendar -User [email protected] -AccessRights Editor

You can use 1-5 steps to connect MS Exchange Powershell on 365 server and use any scripts as well to your needs.

 

Best Regards

Kandinov Arthur