Exchange-2013
資源郵箱拒絕過去的會議
在我們的組織中,我們使用房間日曆來跟踪加班和休假,每兩週計算一次工資單。我們最近剛剛從 Zimbra 遷移到 Exchange 2013,並且遇到了這個工作流程的障礙。
通常——尤其是如果有人生病了——人們不會馬上把休假或加班記在日曆上,更不用說提前了。這意味著他們會追溯休假,通常是在發送提醒電子郵件時。
對於 Exchange 來說還是新手,本週我們驚訝地發現過去資源會自動拒絕會議請求。沒關係,這可能是我們想要的所有“真實”房間,但這不是我們想要的日曆。
我們如何為這些日曆關閉此功能?我已經探勘了所有與日曆相關的 PowerShell 命令,但無濟於事。讓每個人都成為這些日曆的編輯不是一種選擇。他們需要向日曆發送邀請。採用不同的工作流程是我們唯一的選擇嗎?
編輯:這是相關日曆之一的完整日曆處理配置:
PS > Get-CalendarProcessing ins.calendar | fl AutomateProcessing : AutoAccept AllowConflicts : True BookingWindowInDays : 730 MaximumDurationInMinutes : 0 AllowRecurringMeetings : True EnforceSchedulingHorizon : False ScheduleOnlyDuringWorkHours : False ConflictPercentageAllowed : 0 MaximumConflictInstances : 0 ForwardRequestsToDelegates : True DeleteAttachments : True DeleteComments : True RemovePrivateProperty : True DeleteSubject : False AddOrganizerToSubject : False 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 : domain/Resources/ins.calendar Identity : domain/Resources/ins.calendar IsValid : True ObjectState : Changed
由於 bookingwindows 只能在 0-1080 之間。我不認為您正在尋找資源郵箱是可能的。雖然對於您正在尋找的東西,Exchange 之外可能有更好的解決方案,但那是完全不同的蠕蟲罐頭。也許這個郵箱可以是 HR 人員管理的共享日曆。
AllRequestOutOfPolicy 參數指定是否允許所有使用者送出超出策略的請求。此參數的有效輸入是 $ true or $ 錯誤的。預設值為 $false。超出策略的請求需要獲得資源郵箱委託的批准。
您是否嘗試過將 (AllRequestOutOfPolicy) 設置為 $true 並將 HR 設置為資源郵箱委託?