We have just moved from exchange 2003 to 2010 and I have suddenly lost the ability to view all my users calendar I need to ask permission and do it one by one. I used to enter the security setting and not see my name but still be an admin on that calendar.

I was told that I can not gain access to all calendars at once .

Is there a way to gain access to all exchange accounts under my group without going one by one .

link|improve this question
feedback

1 Answer

In Exchange 2010 this is managed with the Set-MailboxFolderPermission cmdlet in powershell/EMS. This article explains a little more, and links to a Powershell script that updates permissions on all calendars to be viewable by all users.

If you only want to set this permission for your own account, replace the "Default" in the last command with your own username, so it says (if your domain and username where domain.local\admin-yaar):

Set-MailboxFolderPermission -User "domain.local\admin-yaar" -AccessRights $AccessRights -Identity $calendar instead

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.