Skype4Business: How to Create a Chat Room using PowerShell?

To create a new Chat Room in Skype4Business Server, you can use PowerShell with the SFB PowerShell module.

Open the Skype For Business Server Management Shell:

Next, create the Chat Room:

PS > New-CsPersistentChatRoom -Name "YourChatRoomName" -PersistentChatPoolFqdn "sfb-frontend.get-cmd.local" -Category "SFBCategory"

Finally, you can change the description and add members to this room:

PS > Set-CsPersistentChatRoom -Identity "YourChatRoomName" -Members @{Add="CN=SkypeRoomMembers,OU=Skype,DC=GET-CMD,DC=local"}

PS > Set-CsPersistentChatRoom -Identity "YourChatRoomName" -Managers @{Add="CN=SkypeRoomManagers,OU=Skype,DC=GET-CMD,DC=local"}

PS > Set-CsPersistentChatRoom -Identity "YourChatRoomName" -Description "Private Room for IT departement"

That’s all! Your room will appear in your Skype4B client.

 

Thanks for reading! You can follow me on Twitter @PrigentNico

About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.