写在前面

Skype for Business 2019可以与Cisco VCS进行集成,以提供大型视频会议功能。本章将介绍如何为新的Skype for Business 2019池新建受信任的应用,并配置集成。

切换Cisco VCS服务器

  1. 备份服务器数据。

升级Lync Server 2013到Skype for Business 2019(十三)_Skype

  1. 运行如下PowerShell命令,移除Lync Server 2013上的旧Trusted Application Pool。
Get-CsTrustedApplicationPool -Identity TrustedApplicationPool:OldApp.contoso.com | Remove-CsTrustedApplicationPool

升级Lync Server 2013到Skype for Business 2019(十三)_切换_02

  1. 运行如下PowerShell命令,为Skype for Business 2019创建新Trusted Application Pool。
New-CsTrustedApplicationPool -Identity NewApp.contoso.com -ComputerFqdn NewPC01.contoso.com -Registrar Skype2019Pool.contoso.com -Site 1 -RequireReplication $false -ThrottleAsServer $true -TreatAsAuthenticated $true

升级Lync Server 2013到Skype for Business 2019(十三)_Lync_03

  1. 运行如下PowerShell命令,创建新Trusted Application Computer。
New-CsTrustedApplicationComputer -Identity NewPC02.contoso.com -Pool NewApp.contoso.com
New-CsTrustedApplicationComputer -Identity NewPC03.contoso.com -Pool NewApp.contoso.com

升级Lync Server 2013到Skype for Business 2019(十三)_切换_04

升级Lync Server 2013到Skype for Business 2019(十三)_PowerShell_05

  1. 运行如下PowerShell命令,创建新Trusted Application。
New-CsTrustedApplication -ApplicationId CiscoVCS -TrustedApplicationPoolFqdn NewApp.contoso.com -Port 5061

升级Lync Server 2013到Skype for Business 2019(十三)_PowerShell_06

  1. 运行如下PowerShell命令,发布拓扑。
Enable-CsTopology -Verbose

升级Lync Server 2013到Skype for Business 2019(十三)_Lync_07