Configure busy on busy
With the release of Skype for Business CU3 – we now have the ability to enable “Busy on Busy”
So what is Busy on Busy? Busy options are a new voice policy attribute in Microsoft Skype for Business Server 2015 CU3. Busy on Busy makes it possible to reject and send a busy signal to new incoming calls or to send the call to voice mail if the person who is being called is already in a call or conference, or has a call on hold.
Busy Options allow the voice policy to be enabled for the organization, the following options can be set for all users within the organization:
- Busy on Busy: New incoming calls are rejected and sent a busy signal when the user is busy.
- Voicemail on Busy: New incoming calls are forwarded to voice mail when the user is busy.
To deploy ensure that Skype for Business CU3 has been deployed to your environment. As part of your normal patching service you will want to Stop-CSWindows service and start them again as per normal.
Enable the service on the voice policy:
Find out which voice policies are in use by doing a:
Get-csvoicepolicy
Within this will outline what voice polices are inputted into Skype for Business. This doesn’t mean they are in use.
Configure the voice policies required to enable busy options, this can be completed by site, by tag, or globally.
In this scenario I have only updated the Lichfield Site
set-CsVoicePolicy -Identity site:Lichfield -enablebusyoptions $true
to do all at once:
Set-CsVoicePolicy -EnableBusyOptions $True
Configure the user actions:
The next step is to configure what actions are taken when a user voice policy is enabled. You have the choice to send to voice mail or to send direct to a busy tone.
In this example I have enabled the user as a busy tone.
Set-CsBusyOptions -Identity gina.wynn@wynnware.com -ActionType BusyOnBusy
To enable all users::
To bulk enable all users run the following:
$enterprise = get-csuser -Filter {HostingProvider -ne “sipfed.online.lync.com”}
$enterprise | Set-CsBusyOptions –ActionType BusyOnBusy
Note: the users who are configured as Hybrid/ Office 365 will not have a registrar pool attached to them and will cause an error to occur.
The post Configure Busy on Busy in Skype for Business appeared first on Oh, Say Can UC....