删除 Lync Server 2013 中的现有 Web 服务配置设置
上次修改的主题: 2013-02-23
按照以下步骤删除 Web 服务配置设置。
删除 Web 服务配置设置
从 RTCUniversalServerAdmins 组的成员 (或具有等效用户权限) 或分配给 CsServerAdministrator 或 CsAdministrator 角色的用户帐户登录到部署 Lync Server 2013 的网络中的任何计算机。
打开浏览器窗口,然后输入管理员 URL 以打开 Lync Server 控制面板。 有关可用于启动 Lync Server 控制面板的不同方法的详细信息,请参阅 Open Lync Server 2013 管理工具。
在左侧导航栏中,单击“安全性”,然后单击“Web 服务”。
在“Web 服务”页上的搜索字段中,键入要删除的策略的全部或部分名称。
在策略列表中,单击所需的策略,再单击“编辑”,然后单击“删除”。
单击“确定”。
使用 Windows PowerShell Cmdlet 删除 Web 服务配置设置
可以使用 Windows PowerShell 和 Remove-CsWebServiceConfiguration cmdlet 删除 Web 服务配置设置。 可以从 Lync Server 2013 Management Shell 或远程Windows PowerShell会话运行此 cmdlet。 有关使用远程Windows PowerShell连接到 Lync Server 的详细信息,请参阅 Lync Server Windows PowerShell博客文章“快速入门:使用远程 PowerShell 管理 Microsoft Lync Server 2010”。https://go.microsoft.com/fwlink/p/?linkId=255876
删除特定的 Web 服务配置设置集合
以下命令会删除应用到 Redmond 站点的 Web 服务安全设置:
Remove-CsWebServiceConfiguration -Identity "site:Redmond"
删除应用到站点范围的所有 Web 服务配置设置
以下命令会删除应用到服务范围的所有 Web 服务安全设置:
Get-CsWebServiceConfiguration -Filter "service:*" | Remove-CsWebServiceConfiguration
删除允许证书身份验证的所有 Web 服务配置设置
以下命令会删除允许使用证书身份验证的所有 Web 服务安全设置:
Get-CsWebServiceConfiguration | Where-Object {$_.UseCertificateAuth -eq $True} | Remove-CsWebServiceConfiguration
有关详细信息,请参阅 Remove-CsWebServiceConfiguration。