在Exchange Online中访问DelegateListLink属性?

我需要给一些邮箱的几个用户ReadPermissions。 我需要只读邮箱通过自动映射出现在用户的Outlook中。

我知道您可以通过Active Directory中的mxExchDelegateListLink属性来实现此目的。 但是,这不适用于Office 365和DirSync。

我想通过使用以下命令可以在PowerShell中查看属性:

(Get-MailboxPermission <mailbox> -ReadFromDomainController)[0].DelegateListLink 

它列出了Outlook将自动映射查询邮箱的所有用户。

如何通过PowerShell将用户添加到该属性? 这个属性对于每个MailboxPermission对象是相同的,所以你可能不能仅仅编辑属性。

我不认为有可能通过Exchangepipe理shell设置DelegateListLink。 如果你检索这个属性的可能的方法en属性没有类似SetValue的方法:

 Get-MailboxPermission <mailbox> -ReadFromDomainController)[0].DelegateListLink | Get-Member TypeName: Microsoft.Exchange.Data.Directory.ADObjectId Name MemberType Definition ---- ---------- ---------- AncestorDN Method Microsoft.Exchange.Data.Directory.ADObjectId AncestorDN(int generation) DescendantDN Method Microsoft.Exchange.Data.Directory.ADObjectId DescendantDN(int depth) Equals Method bool Equals(System.Object obj), bool Equals(string objString), bool Equals(Microsoft.Ex... GetAdNameAtDepth Method Microsoft.Exchange.Data.Directory.AdName GetAdNameAtDepth(int depth) GetByteCount Method int GetByteCount(System.Text.Encoding encoding) GetBytes Method byte[] GetBytes(), byte[] GetBytes(System.Text.Encoding encoding) GetChildId Method Microsoft.Exchange.Data.Directory.ADObjectId GetChildId(string unescapedCommonName), Mi... GetDescendantId Method Microsoft.Exchange.Data.Directory.ADObjectId GetDescendantId(string unescapedChildName,... GetHashCode Method int GetHashCode() GetType Method type GetType() IsDescendantOf Method bool IsDescendantOf(Microsoft.Exchange.Data.Directory.ADObjectId rootId) ToCanonicalName Method string ToCanonicalName() ToDNString Method string ToDNString() ToExtendedDN Method string ToExtendedDN() ToGuidOrDNString Method string ToGuidOrDNString() ToString Method string ToString() TraceTo Method System.Void TraceTo(Microsoft.Exchange.Diagnostics.ITraceBuilder traceBuilder) Depth Property System.Int32 Depth {get;} DistinguishedName Property System.String DistinguishedName {get;} DomainId Property Microsoft.Exchange.Data.Directory.ADObjectId DomainId {get;} IsDeleted Property System.Boolean IsDeleted {get;} IsRelativeDn Property System.Boolean IsRelativeDn {get;} Name Property System.String Name {get;} ObjectGuid Property System.Guid ObjectGuid {get;} Parent Property Microsoft.Exchange.Data.Directory.ADObjectId Parent {get;} Rdn Property Microsoft.Exchange.Data.Directory.AdName Rdn {get;}