Manage categories
トピックの最終更新日: 2012-10-06
新しい常設チャット サーバー カテゴリを作成するには
New-CsPersistentChatCategory -Name Foo -PersistentChatPoolFqdn client.contoso1b118d91-b4c4-4b2f-b842-b451417ec2c6.com [other parameters]
大事な
PersistentChatPoolFqdn は、複数の常設チャット サーバー プールがある場合にのみ必要です。
既存の常設チャット サーバー カテゴリを変更するには
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、Creators を同時に設定できます。 作成者は、AllowedMembers から DeniedMembers を減算したサブセットにする必要があります。 また、メンバーや作成者と同時にカテゴリのプロパティを設定することもできます。
カテゴリの作成、取得、設定、または削除
新しいカテゴリを作成するには
New-CsPersistentChatCategory -Name <String> [-PersistentChatPoolFqdn <String>] [-Description <String>] [-EnableInvitations<Switch Parameter>] [-EnableFileUpload <Switch Parameter>] [-RemoveChatHistory <Switch Parameter>] [-MaxContentSize <Integer>]
カテゴリを取得するには
Get-CsPersistentChatCategory -Identity <String>
または
Get-CsPersistentChatCategory -PersistentChatPoolFqdn <String>
カテゴリを設定するには
Set-CsPersistentChatCategory -Instance <CategoryObject> [-WhatIf] [-Confirm] [<CommonParameters>]
または
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>]
カテゴリを削除するには
Remove-CsPersistentChatCategory -Instance <CategoryObject> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]
または
Remove-CsPersistentChatCategory -Identity <String> [-Force <Switch Parameter>] [-Confirm <Switch Parameter>]