1. 程式人生 > >Lync Server 2013 強制刪除聊天室

Lync Server 2013 強制刪除聊天室

發生中斷 聊天室訪問可能受限 刪除聊天室

創建了一個聊天室,然後將聊天室創建者刪除掉或者是將管理員刪除掉之後,然後想刪除這個聊天室。
解決:
在運行界面上運行:
Remove-CsPersistentChatRoom -Identity <string>
刪除聊天室
技術分享圖片
在mgc數據庫中可以查看到聊天室的信息。
刪除聊天室後,登錄Lync客戶端 報如下錯誤
技術分享圖片
解決:
命令禁用 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]"}

Lync Server 2013 強制刪除聊天室