Topic Last Modified: 2013-03-07
Modifies the property values of the conference disclaimer used in your organization. The conference disclaimer is a message displayed to users who join a conference by using a hyperlink (for example, by pasting a link to the conference into a browser such as Windows Internet Explorer). This cmdlet was introduced in Lync Server 2010.
Syntax
Set-CsConferenceDisclaimer [-Identity
<XdsIdentity>] <COMMON PARAMETERS>
|
Set-CsConferenceDisclaimer [-Instance <PSObject>]
<COMMON PARAMETERS>
|
COMMON PARAMETERS: [-Body <String>] [-Confirm
[<SwitchParameter>]] [-Force <SwitchParameter>]
[-Header <String>] [-WhatIf [<SwitchParameter>]]
|
Examples
EXAMPLE 1
The command shown in Example 1 modifies both the Header and Body properties for your organization’s conference disclaimer. Because you can have only one such disclaimer, you do not need to specify the Identity when running the Set-CsConferenceDisclaimer cmdlet.
Copy Code | |
---|---|
Set-CsConferenceDisclaimer -Header "Litwareinc.com Online Conference" -Body "Important note: Conferencing proceedings are recorded and archived." |
Detailed Description
When configuring conferencing settings, administrators can include a legal disclaimer to display to participants when they join conferences hosted by Lync Server. This disclaimer is typically used to explain legal and intellectual property laws regarding the conference. Users cannot join the conference without agreeing to the stipulations set forth in the disclaimer. Note, however, that this disclaimer is only shown to users who join a conference by using a hyperlink.
Lync 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.
Who can run this cmdlet: By default, members of the following groups are authorized to run the Set-CsConferenceDisclaimer cmdlet locally: 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 "Set-CsConferenceDisclaimer"}
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Body |
Optional |
System.String |
Contents of the conference disclaimer. |
Confirm |
Optional |
System.Management.Automation.SwitchParameter |
Prompts you for confirmation before executing the command. |
Force |
Optional |
System.Management.Automation.SwitchParameter |
Suppresses the display of any non-fatal error message that might occur when running the command. |
Header |
Optional |
System.String |
Title given the conference disclaimer. |
Identity |
Optional |
Microsoft.Rtc.Management.Xds.XdsIdentity |
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 the Set-CsConferenceDisclaimer cmdlet. 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. |
WhatIf |
Optional |
System.Management.Automation.SwitchParameter |
Describes what would happen if you executed the command without actually executing the command. |
Input Types
Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConferenceDisclaimer object. The Set-CsConferenceDisclaimer cmdlet accepts pipelined input of conference disclaimer objects.
Return Types
The Set-CsConferenceDisclaimer cmdlet does not return any objects or values. Instead, the cmdlet modifies existing instances of the Microsoft.Rtc.Management.WritableConfig.Settings.WebConf.ConferenceDisclaimer object.