Jump to content
  • entries
    142
  • comments
    0
  • views
    87496

Exchange Calendar Permissions using Powershell


proximagr

1572 views

 Share

This is a fast way to manage Calendar permissions of a mailbox. Same commands are for both Exchange on-premises and Exchange Online (Office 365). For Exchange Online first connect Powershell to Office365, as described to previous posts.

 


# To check current permissions

Get-MailboxFolderPermission -Identity "[email protected]":\calendar


# To add calendar permissions, permission can be Editor,Reviewer,Author etc

Add-MailboxFolderPermission -Identity "[email protected]":\calendar -User "manager@mydomain" -AccessRights Editor


# To change the calendar permission of an existing access (thi swill change the access to Author

Set-MailboxFolderPermission -Identity "[email protected]":\calendar -User "manager@mydomain" -AccessRights Author


# To remove calendar permissions

Remove-MailboxFolderPermission -Identity "[email protected]":\calendar -User "manager@mydomain"


source: http://www.e-apostolidis.gr/microsoft/exchange-calendar-permissions-using-powershell/

 Share

0 Comments


Recommended Comments

There are no comments to display.

Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...