Wednesday 1 June 2011

A quick way to set calendar permissions using Powershell

A Common request from users is to grant others access to their calendars.
You can either talk the user through this, or setup a new outlook profile to open their mailbox and set it yourself using the GUI – both are time consuming.
This simple powershell command allows you to set permissions with ease:


add-mailboxfolderpermission -identity USERNAME:\calendar -user "Username of person who needs access" -accessrights reviewer



The Identity switch needs to be the username of the mailbox which you are giving access TO, the user switch is the user you are giving access FROM.
The accessrights switch is the level of access you wish to grant the user, the link below lists some additional switches you can use:


http://technet.microsoft.com/en-us/library/dd298062.aspx

5 comments:

  1. Quick and easy I love it! - thanks for the post.

    ReplyDelete
  2. Hi,
    How can I grant 1 user calendar permissions to a group of people using powershell CMD

    ReplyDelete
  3. Caveat - requires Exchange 2010 or later

    ReplyDelete
  4. This comment has been removed by the author.

    ReplyDelete
  5. I’ve been searching for some decent stuff on the subject and haven't had any luck up until this point, You just got a new biggest fan!.. 2018 July Calendar

    ReplyDelete