在 Lync Server 2013 中导入设备更新规则

 

上次修改的主题: 2013-02-23

设备更新规则只能使用 Windows PowerShell 和 Import-CsDeviceUpdate cmdlet 导入。 此 cmdlet 可以从 Lync Server 2013 Management Shell 或远程Windows PowerShell会话运行。

注意

有关使用远程Windows PowerShell连接到 Lync Server 的详细信息,请参阅 Lync Server Windows PowerShell博客文章“快速入门:使用远程 PowerShell 管理 Microsoft Lync Server 2010”。https://go.microsoft.com/fwlink/p/?linkId=255876

将设备更新规则导入单个 Web 服务器

  • 以下命令将设备更新规则导入 Web 服务器 atl-cs-001.litwareinc.com:

    Import-CsDeviceUpdate -Identity "service:WebServer:atl-cs-001.litwareinc.com" -FileName C:\Updates\UCUpdates.cab
    

将设备更新规则导入到所有 Web 服务器

  • 在此示例中,设备更新规则将导入到组织中部署的所有 Web 服务器。 若要使此命令正常工作,必须共享文件夹 \\atl-fs-001.litwareinc.com\汇报,并可供所有 Web 服务器使用。

    Get-CsService -WebServer | ForEach-Object {Import-CsDeviceUpdate -Identity $_.Identity -FileName \\atl-fs-001.litwareinc.com\Updates\UCUpdates.cab}
    

有关详细信息,请参阅 Import-CsDeviceUpdate cmdlet 的帮助主题。