無法在 Outlook 或 OWA 中檢視Exchange Online室清單

原始 KB 編號: 4039148

問題

無法在 Microsoft Outlook 或 Outlook Web App (OWA) 中檢視Microsoft Exchange Online中的會議室清單。

原因

如果會議室清單還原為通訊群組,就會發生此問題。

解決方案

若要解決此問題,請遵循下列步驟:

  1. 執行下列 Cmdlet 以確認會議室清單的收件者類型。 如果收件者類型未顯示為 RoomList ,請移至步驟 2。

    Get-distributionGroup "Name of the affected room list" | fl recipienttypedetails
    
  2. 如果租使用者是僅限雲端的租使用者,請在 Exchange Online PowerShell 中執行下列 Cmdlet:

    Set-DistributionGroup "Name of the affected group" -RoomList
    
  3. 如果您有內部部署的 Microsoft Exchange Server,請在內部部署 Exchange 管理命令介面中執行步驟 2 中的 Cmdlet。

  4. 如果您沒有內部部署Exchange Server部署,請針對受影響的通訊群組變更 msExchRecipientTypeDetails 屬性,並使用 Active Directory PowerShell 模組將值設定為268435456。 如果要執行這項操作,請依照下列步驟執行:

    1. 在安裝遠端伺服器系統管理員套件的任何網域控制站或任何伺服器上,以系統管理員身分啟動 PowerShell,然後執行下列 Cmdlet 以確認模組存在於伺服器上:

      Get-Module -ListAvailable activedirectory
      
    2. 針對 3.0 之前的 PowerShell 版本,使用下列 Cmdlet 匯入 Active Directory PowerShell 模組。 (針對 PowerShell 模組 3.0 或更新版本,模組應該根據發出的命令自動載入。)

      Import-Module activedirectory
      
    3. 執行下列 Cmdlet 以檢查 屬性的 msExchRecipientTypeDetails 目前值。 如果沒有重新調整結果,屬性就不會有設定的值。

      Get-ADObject -Filter {Name -eq "Name of the Distribution group"} -Properties * | Out-String -Stream | Select-String msExchRecipientTypeDetails
      
    4. 如果屬性上未設定任何值,請執行下列 Cmdlet 來設定值:

      Get-ADObject -Filter {Name -eq "Name of the Distribution group"} -Properties * | Set-ADObject -add @{msExchRecipientTypeDetails=268435456}
      
    5. 如果屬性值設定不正確,請執行下列 Cmdlet 來變更現有的值:

      Get-ADObject -Filter {Name -eq "mailsg1"} -Properties * | Set-ADObject -Replace @{msExchRecipientTypeDetails=268435456}
      

其他相關資訊

是否仍需要協助? 前往 Microsoft Community