zoukankan      html  css  js  c++  java
  • Exchange2016 & Skype for business集成之二 OWA集成IM

    Microsoft Outlook Web App 和IM集成
    部署或升级Exchange server 2016与Skype for business 2015后使用原来2013版本方法集成OWA网页IM登录会出现报错,参考TechNet文档依然不成功,经过测试以下方法可以配置成功.

      1. 在 Exchange 2016 邮箱服务器上运行以下命令行以获取分配给 IIS 服务的 SSL 证书的指纹; 
        Get-ExchangeCertificate
        Exchange2016&Skype for business集成之二 OWA集成IM

      2. Exchange 2016集成 Skype : Exchange 2016服务器上运行以下命令
        New-SettingOverride -Name "IM Override" -Component OwaServer -Section IMSettings -Parameters @("IMServerName=SFBpool.OCC.com ","IMCertificateThumbprint=C32B6CC0B1D5AB1CC0B42806595BE077C7F28702") -Reason "Configure IM"
        Exchange2016&Skype for business集成之二 OWA集成IM

      3. Exchange 2016 邮箱服务器上运行以下命令刷新配置:
        Get-ExchangeDiagnosticInfo -Server $ENV:COMPUTERNAME -Process Microsoft.Exchange.Directory.TopologyService -Component VariantConfiguration -Argument Refresh
        Exchange2016&Skype for business集成之二 OWA集成IM

      4. 重新启动 Web 应用程序:
        Restart-WebAppPool MSExchangeOWAAppPool
        Exchange2016&Skype for business集成之二 OWA集成IM

      5. 在 web 上启用 Outlook 即时消息:
        Get-OwaVirtualDirectory | Set-OwaVirtualDirectory -InstantMessagingEnabled $True -InstantMessagingType OCS
        Exchange2016&Skype for business集成之二 OWA集成IM
      6. 检查两个属性的值:
        Get-OwaVirtualDirectory | FL
        Exchange2016&Skype for business集成之二 OWA集成IM
      7. 允许对 web 策略上的 Outlook 进行即时消息处理:注: 在所有服务器执行此操作
        Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -InstantMessagingEnabled $True -InstantMessagingType "OCS”
        Exchange2016&Skype for business集成之二 OWA集成IM
      8. 在的 skype 业务前端服务器部分, 需要将 web 应用程序池中的 Outlook 作为一个受信任的应用程序添加到 skype 的业务拓扑中: 通过运行以下命令获取您的 Skype 的站点 id
        Get-CsSite | Select-Object DisplayName, SiteID
        Exchange2016&Skype for business集成之二 OWA集成IM
      9. 创建受信任的应用程序池:
        New-CsTrustedApplicationPool -Identity mail.occ.com -Registrar sfbpool.occ.com -Site "1" -RequiresReplication $False
        Exchange2016&Skype for business集成之二 OWA集成IM
        Exchange2016&Skype for business集成之二 OWA集成IM
      10. 将受信任的应用程序添加到刚刚创建的受信任应用程序池中:
        New-CsTrustedApplication -ApplicationId OutlookWebApp -TrustedApplicationPoolFqdn mail.occ.com -Port 5199
        Exchange2016&Skype for business集成之二 OWA集成IM
      11. 发布拓扑:
        Enable-CsTopology
        Exchange2016&Skype for business集成之二 OWA集成IM
      12. 登录测试
        Exchange2016&Skype for business集成之二 OWA集成IM
  • 相关阅读:
    What Apache ZooKeeper is and when should it be used?
    基于Apache Curator框架的ZooKeeper使用详解
    Curator典型应用场景之Master选举
    Curator典型应用场景之事件监听
    Curator典型应用场景之分布式锁
    Zookeeper原生Java API、ZKClient和Apache Curator 区别对比
    IntelliJ IDEA oneline function formatting
    Converting a List to String in Java
    UNIAPP 微信小程序做H5 PDF预览
    Git 常用命令,持续更新
  • 原文地址:https://www.cnblogs.com/reachos/p/9619638.html
Copyright © 2011-2022 走看看