创建了一个聊天室,然后将聊天室创建者删除掉或者是将管理员删除掉之后,然后想删除这个聊天室。
解决:
在运行界面上运行:
Remove-CsPersistentChatRoom -Identity <string>
删除聊天室
Lync Server 2013 强制删除聊天室_第1张图片
在mgc数据库中可以查看到聊天室的信息。
删除聊天室后,登录Lync客户端 报如下错误
Lync Server 2013 强制删除聊天室
解决:
命令禁用 Identity 为 FePool.contoso.com\ITChatRoom 的持久聊天聊天室。
Set-CsPersistentChatRoom -Identity "FePool.contoso.com\ITChatRoom" -Disabled $True
删除 聊天室中的所有成员。
Set-CsPersistentChatRoom -Identity "FePool.contoso.com\ITChatRoom" -Members $null
-Managers @{Add="sip:[email protected]", "sip:[email protected]"}
若要从管理员列表中移除用户,请使用 Remove 方法:
-Managers @{Remove="sip:[email protected]"}