One of the great new conferencing features introduced in Lync Server 2010 was the ability to play entry and exit announcements in audio conferences. Along with having participants record their name upon joining, this functionality brings Lync even closer to replacing traditional dial-in conferencing bridges.
However out of the box, Lync conferences don’t play entry and exit announcements by default. The option is available in the Lync conference but the presenter must turn this on when they begin the meeting as shown below.
This provides a lot of flexibility to the individual conference organiser, but a lot of organisations want this behaviour to be on by default for all conferences. In this post, I’ll cover how to configure this in Lync Server 2010.
How is this controlled?
Let’s check out how we control this behaviour on the backend. This functionality is managed using a Lync Dial-In Conferencing Configuration, and defines functionality related specifically to Lync dial-in conferences (big surprise). š
From theĀ TechNet LibraryĀ article on this, we can determine that the following items are configurable:
- Are entry/exit announcements enabled by default?
- Do non-authenticated users need to record their name before they enter the conference?
- The entry and exit announcement type (does the conference play the user’s recorded name or just a tone on entry/exit).
From Lync Server Management Shell, we can run Get-CsDialInConferencingConfiguration to check what’s setup by default:
So as I mentioned above, entry and exit announcements aren’t enabled by default. What we’ll be wanting to do is change theĀ EntryExitAnnouncementsEnabledByDefault value to True, so participants names are announced whenever they join or leave the conference.
How do we configure it?
To configure this, we create a new Dial-In Conferencing Configuration and assign it to a Central Site by running the following cmdlet in Lync Server Management Shell:
New-CsDialInConferencingConfiguration -identity Site:StAlbans -EntryExitAnnouncementsType UseNames -EntryExitAnnouncementsEnabledByDefault $True -EnableNameRecording $True
If you only have one Central Site or would just like to modify the Global configuration, you can substitute theĀ New-CsDialInConferencingConfiguration cmdlet forĀ Set-CsDialInConferencingConfiguration.
Now if we run the cmdlet Get-CsDialInConferencingConfiguration again, we can see that we have the Global configuration as well as our new Site level configuration:
Observing the Expected Behaviour
If we join a conference now and check the setting in the Lync client again, we can see that Play Entry and Exit Announcements is turned on by default now.
Once this is configured, Lync will announce in the conference that “(Participant name)Ā is now joining” when the user joins the conference. When the user leaves the conference, Lync announces that “(ParticipantĀ name)Ā is now exiting”.
One thing worth noting is that for non-authenticated users that have recorded their name, it will play the recording. For authenticated Lync users, the conference will do text-to-speech on their Lync display name e.g. it will read out their name by itself.
Conclusion
Lync’s built in dial-in conferencing bridge is one of the most compelling features that I see customers adopt when they deploy Lync. By configuring these features in Lync, we can provide a dial-in conferencing solution that provides all the functionality services like BT MeetMe provide at significantly less cost.
I hope this feature will be highly improved in Wave15. In its current form, announcement-type set to “usenames” cannot be used, as the delay is 8-10 seconds after somebody actually joined into the confcall. The new participant already starts talking, when suddenly after 5-6 seconds the announcement-playback kicks into the ongoing conversation. Very bad user experience. I must revert back to “tone-only” at all of my customers after a couple of days using it as “usenames”.
The other issue is that Lync users are announced as their TextToSpeech displayname. In the biggest organizations, displaynames contain non-name related characters as well (for example dept. name/dept. codes/ position abbreviations based on the company policy etc.) and these characters cause very bad user experience while TextToSpeech is audible. I hope ExchangeUM recordedname AD attribute can be retrieved for all Lync participants automatically.
Good feedback Richard, I have witnessed this myself and it does take a bit of time to announce each name.
Where is is this option (to toggle per meeting) in the Lync 2103 client?
Hi Hugh, it’s in the Lync Meeting Options before you send the invite in Outlook. You need to set it to “a new meeting space I control” first.
Is there any way to toggle it on and off while you’re in the meeting, or after you’ve sent the invite? This was supported in Lync 2010 and I’m really not sure why they would have taken it out of 2013.
Should be in the Lync meeting options
We use Lync for Business 2015, and I’m unable to find an option for the presenter or organizer to enable join/exit announcements for a single conference.
I’ve checked the options when creating the meeting invite in Outlook as well as the Participant Actions and other Options available during the call.
This appears to be a feature that has been moved or eliminated from previous versions.
This link seems to indicate that it’s possible to configure that option for Skype for Biz 2015. https://technet.microsoft.com/en-us/library/mt422828.aspx?f=255&MSPPError=-2147217396
Our current default is that all entry/exits have a chime-which is distracting for a call with a large audience.
Any suggestions would be greatly appreciated.
Thanks for the comment Jerry. Has your admin run the configuration commands in my post or in the post you linked?