[This is preliminary documentation and is subject to change. Blank topics are included as placeholders.]

Modifies the property values of the conference disclaimer used in your organization. The conference disclaimer is a message that is displayed to federated users (and other unauthenticated users) any time they join a conference. This disclaimer is not shown to authenticated users.

Syntax

Set-CsConferenceDisclaimer [-Identity <XdsIdentity>] [-Body <String>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-Header <String>] [-WhatIf [<SwitchParameter>]]
Set-CsConferenceDisclaimer [-Body <String>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-Header <String>] [-Instance <PSObject>] [-WhatIf [<SwitchParameter>]]

Parameters

Parameter Required Type Description

Identity

Optional

Xds Identity

Unique Identity of the conference disclaimer. Because you can only have a single, global instance of the conference disclaimer you do not need to specify an Identity when calling Set-CsConferenceDisclaimer. However, you can, use the following syntax to reference the global disclaimer: -Identity global.

Instance

Optional

ConferenceDisclaimer object

Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values.

Header

Optional

String

Title given the conference disclaimer.

Body

Optional

String

Contents of the conference disclaimer.

Force

Optional

Switch Parameter

Suppresses the display of any non-fatal error message that might arise when running the command.

WhatIf

Optional

Switch Parameter

Describes what would happen if you executed the command without actually executing the command.

Confirm

Optional

Switch Parameter

Prompts you for confirmation before executing the command.

Detailed Description

When configuring conferencing settings, administrators can include a legal disclaimer to display to participants when these people join Web conferences hosted by Microsoft Communications Server. This disclaimer is typically used to explain legal and intellectual property laws regarding the conference. Users cannot join the conference with agreeing to the stipulations set forth in the disclaimer.

Microsoft Communications Server allows for a single, global instance of the conference disclaimer. The Set-CsConferenceDisclaimer cmdlet enables you to modify the conference disclaimer used in your organization.

Return Types

Set-CsConferenceDisclaimer does not return any objects or values. Instead, the cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConferenceDisclaimer object.

Examples

-------------------------- Example 1 ------------------------

Copy Code
Set-CsConferenceDisclaimer -Header "Litwareinc.com Online Conference" -Body "Important note: Conferencing proceedings are recorded and archived."

The command shown in Example 1 modifies both the Header and Body properties for your organizations conference disclaimer. Because you can have only one such disclaimer, you do not need to specify the Identity when running the Set-CsConferenceDisclaimer cmdlet.