Topic Last Modified: 2010-11-16

Returns information about the conference disclaimer used in your organization. The conference disclaimer is a message that is displayed to users who join the conference by using a hyperlink (for example, users who paste a link to the conference into a browser such as Windows Internet Explorer).

Syntax

Get-CsConferenceDisclaimer [-Identity <XdsIdentity>] [-LocalStore <SwitchParameter>]
Get-CsConferenceDisclaimer [-Filter <String>] [-LocalStore <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 Get-CsConferenceDisclaimer. You can, however, use the following syntax to reference the global disclaimer: -Identity global.

Filter

Optional

String

Enables you to use wildcard values when referencing a conference disclaimer. Because you can only have a single, global instance of the conference disclaimer, there is really no reason to ever use the Filter parameter. However, you can use the following syntax to reference the global disclaimer: -Filter "g*". That syntax brings back all the conference disclaimers that have an Identity that begins with the letter "g".

LocalStore

Optional

Switch Parameter

Retrieves the conference disclaimer data from the local replica of the Central Management store rather than from the Central Management store itself.

Detailed Description

When configuring conferencing settings, administrators can include a legal disclaimer to display to participants at the time participants join conferences hosted by Microsoft Lync Server 2010. This disclaimer is typically used to explain legal and intellectual property laws regarding the conference, and users cannot join the conference without agreeing to the stipulations set forth in the disclaimer. Note that this disclaimer is only shown to users who join a conference by using a hyperlink.

The Get-CsConferenceDisclaimer cmdlet enables you to view the body and header of your organization’s disclaimer.

Who can run this cmdlet: By default, members of the following groups are authorized to run the Get-CsConferenceDisclaimer cmdlet locally: RTCUniversalUserAdmins, RTCUniversalServerAdmins. To return a list of all the role-based access control (RBAC) roles this cmdlet has been assigned to (including any custom RBAC roles you have created yourself), run the following command from the Windows PowerShell prompt:

Get-CsAdminRole | Where-Object {$_.Cmdlets –match "Get-CsConferenceDisclaimer"}

Input Types

None.

Return Types

Get-CsConferenceDisclaimer returns instances of the Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConferenceDisclaimer object.

Example

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

Copy Code
Get-CSConferenceDisclaimer

The command shown in Example 1 returns information about the conference disclaimer configured for use in your organization. Because you are limited to a single disclaimer (configured at the global scope), you do not need to specify an Identity when running this command.

See Also