Set-CsCloudCallDataConnectorConfiguration
Modifies an existing collection of Cloud Call Data Connector configuration settings.
Syntax
Identity (Default)
Set-CsCloudCallDataConnectorConfiguration
[[-Identity] <XdsIdentity>]
[-EnableCallDataConnector <Boolean>]
[-Force]
[-WhatIf]
[<CommonParameters>]
Instance
Set-CsCloudCallDataConnectorConfiguration
[-EnableCallDataConnector <Boolean>]
[-Instance <PSObject>]
[-Force]
[-WhatIf]
[<CommonParameters>]
Description
Call Data Connector greatly simplifies call monitoring in a hybrid environment because you no longer need to use different sets of on-premises and online tools to monitor all of your users' call quality. Whether your users are homed on premises or online, you can choose to view call quality for your entire organization online.
With Call Data Connector, the Skype for Business Server pushes call data to the cloud service so that you can leverage the Skype for Business Online Call Analytics (CA) and Call Quality Dashboard (CQD) tools.
Examples
Example 1
PS C:\> Set-CsCloudCallDataConnectorConfiguration -Identity site:Redmond -EnableCallDataConnector $False
Example 1 disables the Call Data Connector for site:Redmond.
Example 2
Get-CsCloudCallDataConnectorConfiguration | Set-CsCloudCallDataConnectorConfiguration -EnableCallDataConnector $True
Example 2 is a variation of the command shown in Example 1. In this case, the EnableCallDataConnector property is modified for each collection of Cloud Call Data Connector configuration settings currently in use in the organization. To do this, the command first calls the `Get-CsCloudCallDataConnectorConfiguration` cmdlet without any parameters in order to return a collection of all the Cloud Call Data Connector settings currently in use. This collection is then piped to the `Set-CsCloudCallDataConnectorConfiguration` cmdlet, which takes each item in the collection and changes the value of the EnableCallDataConnector property to $True.
Example 3
Get-CsCloudCallDataConnectorConfiguration -Filter "site:*"| Set-CsCloudCallDataConnectorConfiguration -EnableCallDataConnector $True
Another variation of the command used in Example 1 is shown in Example 3.
In this example, the PurgeHourOfDay property is changed for all the Cloud Call Data Connector settings that have been configured at the site scope.
To perform this task, the command first calls the Get-CsCloudCallDataConnectorConfiguration
cmdlet along with the Filter parameter; the filter value "site:*" ensures that only Cloud Call Data Connector settings that have an Identity that begins with the string value "site:" will be returned.
The filtered collection is then piped to the Set-CsCloudCallDataConnectorConfiguration
cmdlet, which changes the EnableCallDataConnector property for each item in that collection.
Parameters
-EnableCallDataConnector
Applicable: Skype for Business Server 2019
Enables upload of call data.
Parameter properties
Type: | Boolean |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Force
Applicable: Skype for Business Server 2019
Suppresses the display of any non-fatal error message that might occur when running the command.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Identity
Applicable: Skype for Business Server 2019
Represents the unique identifier to be assigned to the new collection of CloudCallDataConnector configuration settings. Because you can only create new collections at the site scope, the Identity will always be the prefix "site:" followed by the site name; for example, "site:Redmond".
Parameter properties
Type: | XdsIdentity |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
Identity
Position: | 1 |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Instance
Applicable: Skype for Business Server 2019
Allows you to pass a reference to an object to the cmdlet, rather than set individual parameter values.
Parameter properties
Type: | PSObject |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
Instance
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-WhatIf
Applicable: Skype for Business Server 2019
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Aliases: | wi |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.