Topic Last Modified: 2012-10-06

To create a new Persistent Chat Server Add-in

Copy Code
New-CsPersistentChatAddin -Name Contoso -PersistentChatPoolFqdn client.contoso.com -Url http://contoso.com 

Create, Get, Set, or Remove an Add-in

To create a new Add-in

Copy Code
New-CsPersistentChatAddin -PersistentChatPoolFqdn <String> -Name <String> -Url<String>
Important:
PersistentChatPoolFqdn <String> is required only if there is more than one Persistent Chat Server pool.

To get an Add-in

Copy Code
Get-CsPersistentChatAddin -Identity <String>]

or

Copy Code
Get-CsPersistentChatAddin -PersistentChatPoolFqdn <String>

To set an Add-in

Copy Code
Set-CsPersistentChatAddIn -Instance <AddinObject> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]

or

Copy Code
Set-CsPersistentChatAddIn -Identity <String> [-Name <String>] [-Url<String>] [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]

To remove an Add-in

Copy Code
Remove-CsPersistentChatAddIn -Instance <AddinObject> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]

or

Copy Code
Remove-CsPersistentChatAddIn -Identity <String> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]