[This is pre-release documentation and subject to change in future releases. This topic's current status is: Milestone-Ready]

Topic Last Modified: 2010-07-09

When dial-in users join or leave a conference, the Conferencing Announcement application can announce their entrance or exit by playing a tone or saying their names. You can change how announcements work by running cmdlets. This step is optional.

To modify the conference join and leave announcement behavior

  1. Open Communications Server Management Shell.

  2. Run:

    Copy Code
    Get-CsDialinConferencingConfiguration
    

    This cmdlet retrieves information about whether participants are required to record their name when joining a conference and how Communications Server responds when participants join or leave a dial-in conference.

  3. Run:

    Copy Code
    Set-CsDialinConferencingConfiguration –Identity <XdsIdentity> 
    [-EnableNameRecording <True | False>] 
    [-EntryExitAnnouncementsEnabledByDefault <True | False>] 
    [-EntryExitAnnouncementsType <UseNames | ToneOnly] 
    

    EnableNameRecording determines whether anonymous participants are asked to record their name before entering the conference. The default value is "True," which means that anonymous participants are prompted to state their name when joining a conference. (Authenticated participants do not record their name because their display name is used instead.)

    EntryExitAnnouncementsEnabledByDefault indicates whether announcements are turned on or off by default. The default value is "False," which means that by default there are no announcements when participants join or leave a conference. The meeting organizer can override this setting when scheduling a meeting.

    EntryExitAnnouncementsType indicates the action taken whenever a participant joins or leaves a conference for which announcements are enabled. The default value is "UseNames," which means there is an announcement similar to the following: "Ken Myer has joined the conference" when announcements are turned on.

    You can configure these settings at the global scope or at the site scope. Settings configured at the site scope take precedence over settings configured at the global scope.

    For example:

    Copy Code
    Set-CsDialinConferencingConfiguration –Identity site:Redmond 
    -EnableNameRecording $false 
    -EntryExitAnnouncementsEnabledByDefault $true 
    -EntryExitAnnouncementsType ToneOnly
    

    In this example, settings are configured at the site scope for Redmond. Announcements are turned on, but participants are not prompted to say their name when they join a conference. A tone is played when participants enter or leave a conference.