Adding permissions to edit calendar via Powershell for Exchange

Posted on

Needed to add permissions to a new secretary to edit her boss’ calendar.

One method to do this is to do it from the owner’s outlook itself.

But what if they are unavailable?

Open up EMS , Exchange Management Shell

005-001

To see who has permissions to the calendar:

Get-MailboxPermission -identity “username:\Calendar”

Get—MailhoxFolderPermission —identity “a uerlname:\calendar’P Runspaceld : -da?fa44a9bf FolderNane : Calendar User : Default AccessRights : {AvailahilityOnly} Identity : Default IsUalid : True” height=”129″ width=”729″>

005-002

to add permissions:

Add-MailboxFolderPermission -identity “username:\Calendar” -user “secretary” -AccessRights editor

005-003

Now you will see the user listed there

005-004

If we want to remove permissions then we would use

remove-MailboxFolderPermission -identity “username:\Calendar” -user “secretary”

005-005

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s