1

We have an Exchange Server running, we're trying to connect with it from an application in another server. Thing is, we have to set some permissions for it to work (we want to access any mailbox with an Administrator mailbox, but we have to set it Full Mailbox Access first). We somehow need to set this for every new user at the moment it's created. Could you tell us how do we do that?

Thanks in advance.

Yandros
  • 722
  • 1
  • 8
  • 16

2 Answers2

1

Here is one way to do it.

http://support.microsoft.com/kb/821897

darkstar3d
  • 330
  • 1
  • 7
0

Another way to do this is , type following command in the Exchange Management Shell

Add-MailboxPermission -Identity "" -User "" -AccessRights FullAccess -InheritanceType All

Using Exchange Management Shell commands, you can do many useful things easily.

Shweta patel
  • 105
  • 11