As PFDAVAdmin doesn’t work with Exchange 2010 as it was in Exchange 2007, you might find these Powershell Cmd-Lets useful.
As Here is the list of Cmd-Lets you should use in order to manage this calendar settings:
- Get-MailboxFolderPermission
- Set-MailboxFolderPermission
- Add-MailboxFolderPermission
- Remove-MailboxFolderPermission
Here are some examples of use :
[powershell]
Get-MailboxPermission -identity "John Doe"
Add-MailboxFolderPermission -identity "John Doe:\Calendar" -user "Cole Eggs" -AccessRights Reviewer
[/powershell]
You should have a look at the help to have more examples:
[powershell]
get-help Get-MailboxFolderPermission – examples
[/powershell]