Topic Last Modified: 2013-02-22

Returns information about the audio conferencing providers authorized for use in the organization. Audio conferencing providers are a third-party companies that provide organizations with conferencing services.

The Get-CsAudioConferencingProvider cmdlet can only be used with Microsoft Lync Online.

Syntax

Get-CsAudioConferencingProvider [[-Identity] <XdsGlobalRelativeIdentity>] [-LocalStore][<CommonParameters>]Get-CsAudioConferencingProvider [-Filter <string>] [-LocalStore] [<CommonParameters>]

Examples

Example 1

The command shown in Example 1 returns information about all the audio conferencing providers available for use in your organization.

Copy Code
Get-CsAudioConferencingProvider

Example 2

In Example 2, information is returned for a single audio conferencing provider: the provider with the Identity Fabrikam Telecom.

Copy Code
Get-CsAudioConferencingProvider -Identity "Fabrikam Telecom"

Example 3

Example 3 demonstrates how wildcard values (and the Filter parameter) can be used to return information about audio conferencing providers. In this example, the filter value "*Fabrikam*" returns all audio conferencing providers that have the string value "Fabrikam" anywhere in their Identity.

Copy Code
Get-CsAudioConferencingProvider -Filter "*Fabrikam*"

Detailed Description

An audio conferencing provider is a third-party company that provides organizations with conferencing services. Among other things, audio conferencing providers provide a way for users located off site, and not connected to the corporate network or the Internet, to participate in the audio portion of a conference or meeting. Audio conferencing providers often provide high-end services such as live translation, transcription, and live per-conference operator assistance.

After organizations have contracted with an audio conferencing provider, users can be assigned to the provider by using the Set-CsUserAcp cmdlet. Administrators can retrieve information about the audio conferencing providers available to them by using the Get-CsAudioConferencingProvider cmdlet.

Parameters

Parameter Required Type Description

Filter

Optional

System.String

Enables you to use wildcard characters when indicating the audio conferencing provider (or providers) to be returned. For example, this syntax returns information about all the audio conferencing providers that have the string value "fabrikam" somewhere in their Identity:

-Filter "*fabrikam*"

Note that you cannot use the Filter parameter and the Identity parameters in the same command.

Identity

Optional

Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity

Unique identifier for the audio conferencing provider to be returned. For example:

-Identity "Fabrikam Telecom"

If neither the Identity parameter nor the Filter parameter are included in a command then the Get-CsAudioConferencingProvider cmdlet returns information for all the available providers.

LocalStore

Optional

System.Management.Automation.SwitchParameter

Retrieves the audio conferencing provider data from the local replica of the Central Management store rather than from the Central Management store itself.

Input Types

None. The Get-CsAudioConferencingProvider cmdlet does not accept pipelined input.

Return Types

The Get-CsAudioConferencingProvider cmdlet returns instances of the Microsoft.Rtc.Management.WritableConfig.Settings.AudioConferencingProvider.AudioConferencingProvider#Decorated object.

See Also