Exchange 2013 预约在用户不知情的情况下被接受为暂定预约

Exchange 2013 预约在用户不知情的情况下被接受为暂定预约

有一位用户说他的日历上出现了会议,但他没有接受。他也从未在收件箱中看到邀请。我已通过向他发送测试邀请来验证这一点。他是一位运行 Outlook 2011 的 Mac 用户,据我所知,此客户端无法执行自动接受,但为了确保万无一失,我让他关闭 Outlook 并启动 OWA,然后发送了第二个测试邀请。这次也是自动接受的。

我检查以确保他的帐户没有附加任何服务器端规则(Outlook 中也没有客户端规则)。以下是 get-CalendarProcessing 针对他的帐户的输出。我认为这些设置都没有问题。它们与其他没有遇到此问题的用户相同。

[PS] C:\Windows\system32>Get-CalendarProcessing *username*|fl

RunspaceId                          : b6f805f6-41ef-4375-aa05-0323fe7daa24
AutomateProcessing                  : AutoUpdate
AllowConflicts                      : False
BookingWindowInDays                 : 180
MaximumDurationInMinutes            : 1440
AllowRecurringMeetings              : True
EnforceSchedulingHorizon            : True
ScheduleOnlyDuringWorkHours         : False
ConflictPercentageAllowed           : 0
MaximumConflictInstances            : 0
ForwardRequestsToDelegates          : True
DeleteAttachments                   : True
DeleteComments                      : True
RemovePrivateProperty               : True
DeleteSubject                       : True
AddOrganizerToSubject               : True
DeleteNonCalendarItems              : True
TentativePendingApproval            : True
EnableResponseDetails               : True
OrganizerInfo                       : True
ResourceDelegates                   : {}
RequestOutOfPolicy                  : {}
AllRequestOutOfPolicy               : False
BookInPolicy                        : {}
AllBookInPolicy                     : True
RequestInPolicy                     : {}
AllRequestInPolicy                  : False
AddAdditionalResponse               : False
AdditionalResponse                  :
RemoveOldMeetingMessages            : True
AddNewRequestsTentatively           : True
ProcessExternalMeetingMessages      : False
RemoveForwardedMeetingNotifications : False
MailboxOwnerId                      : *********
Identity                            : *********
IsValid                             : True
ObjectState                         : Changed

我还能检查什么?我遗漏了什么?任何帮助都将不胜感激。

答案1

这是 Exchange 服务器的“日历助理”在执行的操作,而不是 Outlook 客户端。

有三种方法可以禁用“日历助理”。

在 Outlook 客户端中

您可以从 Outlook 客户端禁用该功能,但我认为 Mac 版 Outlook 2011 中不存在该选项。

在 OWA - Outlook Web Access 中

  1. 使用 Exchange 管理员提供的地址登录 OWA。
  2. 点击选项然后选择查看所有选项...
  3. 选择设置然后选择日历标签
  4. 取消选中自动将新的会议请求放入我的日历中,标记为“暂定”

步骤来源

使用 Exchange Powershell 控制台

或者,您应该能够从 Exchange 服务器本身针对每个用户禁用它们(来源):

Set-CalendarProcessing -Identity "user name" -AddNewRequestsTentatively:$false

请注意,仅支持更改资源(房间、设备等)的此参数。要为普通用户禁用此功能,必须暂时更改帐户类型(来源)。

Get-Mailbox -Identity "user name" | Set-Mailbox -Type Room
Get-Mailbox -Identity "user name" | Set-CalendarProcessing -AddNewRequestsTentatively:$false
Get-Mailbox -Identity "user name" | Set-Mailbox -Type Regular

如果要完全禁用日历助理,请设置AutomateProcessing为“none”:

Get-Mailbox -Identity "user name" | Set-Mailbox -Type Room
Get-Mailbox -Identity "user name" | Set-CalendarProcessing -AutomateProcessing:'none'
Get-Mailbox -Identity "user name" | Set-Mailbox -Type Regular

相关内容