當日曆資源與 Zoom Room 整合時,會議室的電視顯示器、控制器和排程顯示器將顯示針對會議室排程的會議。 您的組織成員可以透過為會議預約會議室來排程在 Zoom Room 中舉行的會議。 透過日曆服務指派會議室成為日曆資源。 授權 Zoom 存取日曆資源可以讓使用者一鍵開始和加入會議室中的會議。
為 Zoom Rooms 新增日曆服務前,Office 365 管理員必須在 Office 365 內建立專用使用者來管理日曆、為每個 Zoom Room 建立或尋找日曆資源,然後使用模擬或代理人存取權來配置使用者和資源。
Office 365 管理員完成每個部分的所有步驟後,即可使用專用使用者的認證,為您帳戶內的 Zoom Rooms 提供日曆服務及其所有日曆資源的使用授權。
本文介紹如下主題:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection注意:若您位於中國,您輸入的命令則略有不同。 請輸入下列命令:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://partner.outlook.cn/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Set-ExecutionPolicy Unrestricted注意:若未依步驟 1 以管理員身分執行 Windows Powershell,則此命令會失敗。
New-ManagementRoleAssignment -Role:ApplicationImpersonation -User: "DedicatedUser"注意:對於 DedicatedUser,請輸入專用服務帳戶使用者的信箱地址。
New-ManagementScope -Name "ResourceMailboxes" -RecipientRestrictionFilter {RecipientTypeDetails -eq "RoomMailbox" -or RecipientTypeDetails -eq "EquipmentMailbox" -or Name -eq 'DedicatedUser'}
New-ManagementRoleAssignment –Name "ResourceImpersonation" –Role ApplicationImpersonation –User "DedicatedUser" –CustomRecipientWriteScope "ResourceMailboxes"注意:對於 DedicatedUser,請輸入專用服務帳戶使用者的信箱地址。
以管理員身分登入 Microsoft Exchange 系統管理中心 (EAC)。
在導覽功能表中,按一下收件者及資源。
按兩下會議室名稱。
按一下信箱委派
。
在傳送為旁,按一下加號 (+)。
選取專用使用者,並按一下新增 ->
。
按一下確定。
向下捲動至完整存取權,然後按一下加號 (+)。
選取專用使用者,並按一下新增 ->
按一下確定。
按一下儲存。
針對每個會議室重複步驟 3-11。
前往下一部分來啟用專用使用者以編輯 Zoom Rooms 日曆。
若要在 Zoom 顯示日曆資訊並產生 Zoom 會議的加入連結,您必須更新日曆資源設定。
Connect-ExchangeOnline -UserPrincipalName <UPN>
注意:將 <UPN> 的值變更為 Office 365 管理員的使用者名稱。 請確認此帳戶同時擁有「組織管理」與「收件者管理」權限。Connect-ExchangeOnline -ExchangeEnvironmentName O365Default -ConnectionUri https://outlook.office365.com/powershell-liveid/
Get-CalendarProcessing -Identity "room_name"| Format-List Identity,DeleteComments,DeleteSubject,AddOrganizerToSubject,RemovePrivateProperty,DeleteAttachments
Identity : portertest.com/Users/room_name
DeleteSubject : True
AddOrganizerToSubject : True
DeleteComments : True
RemovePrivateProperty : True
DeleteAttachments : True
Set-CalendarProcessing -Identity "room_name" -AddOrganizerToSubject $false -OrganizerInfo $true -DeleteAttachments $true -DeleteComments $false -DeleteSubject $false -RemovePrivateProperty $false執行這些命令後,就會進行下列設定:
Identity : portertest.com/Users/room_name注意:
DeleteSubject : False
AddOrganizerToSubject : False
DeleteComments : False
RemovePrivateProperty : False
Get-CalendarProcessing -Identity "room_name" | Format-List identity,deletesubject,addorganizertosubject,DeleteComments,RemovePrivateProperty
Identity : portertest.com/Users/room_name
DeleteSubject : False
AddOrganizerToSubject : False
DeleteComments : False
RemovePrivateProperty : False
Disconnect-ExchangeOnline
注意:請參閱新增 Zoom Room以取得在 Zoom Room 設定日曆資源的資訊。