Topic Last Modified: 2013-02-23

Quality of Experience (QoE) metrics track the quality of audio and video calls made in your organization, including such things as the number of network packets lost, background noise, and the amount of "jitter" (differences in packet delay). These metrics are stored in a database apart from other data (such as call detail records), which allows you to enable and disable QoE independent of other data recording.

When you install Microsoft Lync Server 2013, a single, global collection of QoE configuration settings is created for you. Administrators also have the option of creating custom setting collections that can be applied to individual sites. By design, settings configured at the site scope take precedence over settings configured at the global scope. If you delete site-scoped settings, then QoE will be managed in that site by using the global settings.

Note that you can also “delete” the global settings. However, the global settings will not actually be removed. Instead, all the properties in that collection will be reset to their default values. For example, by default purging is enabled in a collection of QoE configuration settings. Suppose you modify the global collection so that purging is disabled. If you later delete the global settings, all the properties will be reset to their default values. In this case, that means that purging will once again be enabled.

You can remove QoE configuration settings by using the Lync Server Control Panel or by using the Remove-CsQoEConfiguration cmdlet.

To delete QoE configuration settings by using Lync Server Control Panel

  1. Log on to the computer as a member of the RTCUniversalServerAdmins group, or as a member of the CsVoiceAdministrator, CsServerAdministrator, or CsAdministrator role. For details, see Delegate Setup Permissions.

  2. Open a browser window, and then enter the Admin URL to open the Lync Server Control Panel. For details about the different methods you can use to start Lync Server Control Panel, see Open Lync Server Administrative Tools.

  3. In the left navigation bar, click Monitoring and Archiving, and then click Quality of Experience Data.

  4. On the Quality of Experience Data page, click the policy that you want, click Edit, and then click Delete.

  5. Click OK.

Removing QoE Configuration Settings by Using Windows PowerShell Cmdlets

You can delete QoE configuration settings by using Windows PowerShell and the Remove-CsQoEConfiguration cmdlet. You can run this cmdlet either from the Lync Server 2013 Management Shell or from a remote session of Windows PowerShell. For details about using remote Windows PowerShell to connect to Lync Server, see the Lync Server Windows PowerShell blog article "Quick Start: Managing Microsoft Lync Server 2010 Using Remote PowerShell" at http://go.microsoft.com/fwlink/p/?linkId=255876.

To remove a specified collection of QoE configuration settings

  • This command removes the QoE configuration settings applied to the Redmond site:

    Copy Code
    Remove-CsQoEConfiguration -Identity "site:Redmond"
    

To remove all of the QoE configuration settings applied to the site scope

  • This command removes all the QoE configuration settings applied to the site scope:

    Copy Code
    Get-CsQoEConfiguration -Filter "site:*" | Remove-CsQoEConfiguration
    

To remove all of the QoE configuration settings where QoE monitoring is disabled

  • This command removes all the QoE configuration settings where QoE monitoring has been disabled:

    Copy Code
    Get-CsQoEConfiguration | Where-Object {$_.EnableQoE -eq $False} | Remove-CsQoEConfiguration
    

For details, see Remove-CsQoEConfiguration.