Competella Calendar Sync Account in Exchange
Competella Calendar Sync Account in Exchange
Competella Calendar Sync Account in Exchange
Revision.
1.0
Date.
2010-10-22
Table of Contents
Prerequisites........................................................................................................................................... 3
What is Exchange Web Service?.............................................................................................................. 3
May I see your ID? ................................................................................................................................... 4
How access a non primary mailbox? .................................................................................................... 4
How to Create a Impersonate account in Exchange 2007 ...................................................................... 5
Step by step: ........................................................................................................................................ 5
1 Create a Mailbox user in Exchange Management Console. ......................................................... 5
2 Open Exchange Management Shell.............................................................................................. 7
Impersonation in Exchange 2010 ............................................................................................................ 9
Try to use this account in OWA ............................................................................................................. 10
Prerequisites
Exchange Server 2007 or 2010 with EWS enabled.
EWS - Exchange Web Services.
An account with Exchange Impersonation.
Here for Exchange 2007
http://msdn.microsoft.com/en-us/library/bb204095(EXCHG.80).aspx
This is only an example from our test/lab environment to show the account type.
Not a solution in all Exchange environments.
Please referrer to articles on the net and Exchange documentations.
Here in example user is Sync2007
1 Create a Mailbox user in Exchange Management Console.
Reminders!
Check result:
Get-MailboxPermission -Identity Sync2007 | Format-List
Solution 2
Here Ex2007
Add-ADPermission -Identity (get-exchangeserver).DistinguishedName -User (Get-User -Identity Ex2007 | selectobject).identity -AccessRights GenericAll -InheritanceType Descendents
Add-ADPermission -Identity (get-exchangeserver).DistinguishedName - User (Get-User -Identity Ex2007 | selectobject).identity -ExtendedRight ms-Exch-EPI-Impersonation
Add-ADPermission -Identity (get-exchangeserver).DistinguishedName - User (Get-User -Identity Ex2007 | selectobject).identity -ExtendedRight ms-Exch-EPI-May-Impersonate
Add-ADPermission -Identity (get-exchangeserver).DistinguishedName - User (Get-User -Identity Ex2007 | selectobject).identity -ExtendedRights Send-As
Add-ADPermission -Identity (get-exchangeserver).DistinguishedName - User (Get-User -Identity Ex2007 | selectobject).identity -ExtendedRights Receive-As
Here we dont run foreach object for all properties only Recieve and Send
10