Setting calendar permissions in Exchange 2010

This is quick post for reference, and is intended to show how to manage user's calendar permissions in Exchange 2010. Four PowerShell cmdlets are available for achieving this task:
For example:
  • To list (get) assigned calendar permissions on user Jane.Doe here is the syntax:
Get-MailboxFoderPermission -identity jane.doe:\calendar
  • To assign John.Doe Reviewer permission on Jane.Doe calendar (John does not have any permission on Jane's calendar):
Add-MailboxFolderPermission -identity jane.doe:\calendar -user "John Doe" -AccessRights Reviewer
  • To modify already assigned permission to John Doe on Jane Doe calendar from Reviewer to Editor:
Set-MailboxFolderPermission -identity jane.doe:\calendar -user "John Doe" -AccessRights Editor
  •  And finally to remove already added permission for John Doe on Jane Doe calendar:
Remove-MailboxFolderPermission -identity jane.doe:\calendar -user "John Doe"
 

14 comments:

  1. Anyone can attempt writing on your behalf, however, the question is would you pay someone to do it for you without checking their credibility? Our firm has established itself as the most trustworthy assignment help firm in Australia and globally. Join these thousands of students and achieve high distinction in each and every one of your college tasks. This is the main reason why most students search for online assignment help over the internet and choose only the most proficient and trusted academic writing experts. So, if you are searching for quality assignment help usa you can find it right here from the local experts.

    ReplyDelete
  2. Thanks for Setting calendar permissions in Exchange 2010. Kindly submit the complete method about changing this calendar. You have provided insufficient information into your calendar. Assignment Writing Services

    ReplyDelete
  3. Look at the offered steps to Canon Pixma Mg3022 wireless setup, printer driver download and introduce.

    ReplyDelete
  4. Great information provided by you... if you facing this same issues the dial visit our blog:-
    canon mg3022 setup

    ReplyDelete
  5. Hello, I would like to thank you for sharing this useful material. The info you mentioned here will help me to complete my https://writer-elite.com task.

    ReplyDelete
  6. With these guides, you can quickly find all the information you need to write an essay or dissertation. You can also get professional advice at the link https://supreme-thesis.com/articles/dissertation-writing-service/ .

    ReplyDelete
  7. I really liked your post and your blog in general. I would like to share with you useful information, namely a site where you can buy pre written essays https://essaysempire.com/buy-pre-written-essay.html

    ReplyDelete
  8. A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post.
    Hi! We are water filter supplier Great points made up above!
    And Industrial RO Plants thanks…
    I think this is one of the most important information for me. And i am glad reading your article. But should remark on few general things…

    ReplyDelete
  9. Yes you are absolutely right. I feel the same way. Keep giving such information. Thanks. This article tells you about Fake Address. If you need a lot of address then you must read this article Fake Address Generator. This information may be useful to you.

    ReplyDelete
  10. Total Assignment Help gives best assignment answers online service here with experts specializing in a wide range of disciplines ensuring you get the assignments that score maximum grades.

    ReplyDelete

How to check EMBG (Unique Master Citizen Number) using regex

In this post, I will share my implementation of how to check if some number looks like EMBG or Unique Master Citizen Number. For those of yo...