This article is part of the Microsoft Lync Server 2010 Administration Guide: PowerShell Supplement ... .
Create a Site Policy for Call Detail Recording
To enable Call Detail Recording for a site, use the New-CsCdrConfiguration cmdlet:
New-CsCdrConfiguration -Identity site:Redmond -EnableCDR $True –EnablePurging $True –KeepCallDetailForDays 30 –KeepErrorReportForDays 30
For more information
Create a Site Policy for Quality of Experience
To enable Quality of Experience monitoring for a site, use the New-CsQoEConfiguration cmdlet:
New-CsQoEConfiguration -Identity site:Redmond –EnableQoE $True –EnablePurging $True -KeepQoEDataForDays 30
For more information
Enable Call Detail Recording
To enable Call Detail Recording for a site, set the value of the EnableCDR property to True:
Set-CsCdrConfiguration -Identity site:Redmond -EnableCDR $True
For more information
Enable Quality of Experience
To enable Quality of Experience monitoring for a site, set the value of the EnableQoE property to True:
Set-CsQoEConfiguration -Identity site:Redmond –EnableQoE $True
For more information
Configure Call Detail Recording
To specify the number of days CDR data will be retained, use the Set-CsCdrConfiguration cmdlet and the KeepCallDetailForDays and KeepErrorReportForDays parameters:
Set-CsCdrConfiguration -Identity site:Redmond –EnablePurging $True –KeepCallDetailForDays 30 –KeepErrorReportForDays 30
For more information
Configure Quality of Experience
To specify the number of days QoE data will be retained, use the Set-CsQoEConfiguration cmdlet and the KeepQoEDataForDays parameter:
Set-CsQoEConfiguration -Identity site:Redmond –EnablePurging $True -KeepQoEDataForDays 30
For more information
Delete a Site Policy for Call Detail Recording
To delete the Call Detail Recording configuration settings for site, use the Remove-CsCdrConfiguration cmdlet:
Remove-CsCdrConfiguration -Identity site:Redmond
To delete all the per-site settings, use this command:
Get-CsCdrConfiguration –Filter "site:*" | Remove-CsCdrConfiguration
For more information
Delete a Site Policy for Quality of Experience
To delete the Quality of Experience configuration settings for site, use the Remove-CsQoEConfiguration cmdlet:
Remove-CsQoEConfiguration -Identity site:Redmond
To delete all the per-site settings, use this command:
Get-CsQoEConfiguration –Filter "site:*" | Remove-CsQoEConfiguration
For more information
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.