-
הרשאות על לוחות שנה – Office 365 PowerShell
- .Open PowerShell as Administrator on your computer
- Type $liveCred = Get-Credential Enter admin Credentials like: [email protected]
- Passw0rd
- Type this in powershell: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection
- Then type Import-PSSession $Session
- Now you are in powershell command console of Exchange 365
- 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