* Launch the Exchange Management Shell, and from there check the permission granted to the users on the mailbox.
C:\>Get-MailboxPermission -identity "MailboxName" | fl User, AccessRights
* Check if the target user has FullAccess and ReadPermissions as well.
* If not, add the ReadPermission as well to the user on that mailbox.
C:\>Add-MailboxPermission -identity "Mailbox Name" -AccessRights ReadPermission -User "AccountID"
* Once done check again if it shows proper permissions.
* Then try to access the mailbox.
Good Luck (^_^)
Main Topics
Browse All Topics





by: MesthaPosted on 2009-05-01 at 08:47:33ID: 24280603
How long did you wait after setting the permissions? Exchange caches permissions and it can take two hours before the permission is live.
Simon.