Manage categories
Rubrique Dernière modification : 2012-10-06
Pour créer une catégorie de serveur de conversation permanente
New-CsPersistentChatCategory -Name Foo -PersistentChatPoolFqdn client.contoso1b118d91-b4c4-4b2f-b842-b451417ec2c6.com [other parameters]
Important
PersistentChatPoolFqdn est nécessaire uniquement s’il existe plusieurs pools de serveurs de conversation permanente.
Pour apporter des modifications à la catégorie de serveur de conversation permanente existante
Set-CsPersistentChatCategory -Identity testCat -AllowedMembers @{Add="sip:user1@contoso.com", "CN=container,DC=contoso,DC=com"} -DeniedMembers @{Add="sip:user2@contoso.com"}
Set-CsPersistentChatCategory -Identity testCat -Creators @{Add="sip:user1@contoso.com"}
Windows PowerShell : AllowedMembers, DeniedMembers et Creators peuvent être définis simultanément. Les créateurs doivent être le sous-ensemble de AllowedMembers moins DeniedMembers. Vous pouvez également définir les propriétés d’une catégorie en même temps que les membres et les créateurs.
Créer, obtenir, définir ou supprimer une catégorie
Pour créer une catégorie
New-CsPersistentChatCategory -Name <String> [-PersistentChatPoolFqdn <String>] [-Description <String>] [-EnableInvitations<Switch Parameter>] [-EnableFileUpload <Switch Parameter>] [-RemoveChatHistory <Switch Parameter>] [-MaxContentSize <Integer>]
Pour obtenir une catégorie
Get-CsPersistentChatCategory -Identity <String>
ou
Get-CsPersistentChatCategory -PersistentChatPoolFqdn <String>
Pour définir une catégorie
Set-CsPersistentChatCategory -Instance <CategoryObject> [-WhatIf] [-Confirm] [<CommonParameters>]
ou
Set-CsPersistentChatCategory [-Identity] <string> [-Name <string>] [-Description <string>] [-Invitations <bool>] [-FileUpload <bool>] [-ChatHistory <bool>] [-AllowedMembers <PSListModifier[string]>] [-DeniedMembers <PSListModifier[string]>] [-Creators <PSListModifier[string]>] [-WhatIf] [-Confirm] [<CommonParameters>]
Pour supprimer une catégorie
Remove-CsPersistentChatCategory -Instance <CategoryObject> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]
ou
Remove-CsPersistentChatCategory -Identity <String> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]