在 Lync Server 2013 中删除设备更新配置设置的集合

 

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

还可以使用 Windows PowerShell 和 Remove-CsdeviceUpdateConfiguration 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

删除设备更新配置设置的特定集合

  • 此命令删除应用于 Redmond 站点的设备更新配置设置:

    Remove-CsDeviceUpdateConfiguration -Identity "site:Redmond"
    

删除应用于站点范围的所有设备更新配置设置

  • 此命令删除应用于站点范围的所有设备更新配置设置:

    Get-CsDeviceUpdateConfiguration -Filter "site:*" | Remove-CsDeviceUpdateConfiguration
    

根据 LogCleanUpInterval 属性的值删除设备更新配置设置

  • 以下命令删除日志清理间隔大于 10 天 (10.00:00:00) 的所有设备更新配置设置:

    Get-CsDeviceUpdateConfiguration | Where-Object {$_.LogCleanUpInterval -gt "10.00:00:00" | Remove-CsDeviceUpdateConfiguration
    

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