Commands › Microsoft Teams

Set-CsVideoInteropServiceProvider

Microsoft Teams MicrosoftTeams Set-*

Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider.

Quick start script

# Set-CsVideoInteropServiceProvider — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsVideoInteropServiceProvider
$before | Format-List

# 3. Make the change (dry run first)
Set-CsVideoInteropServiceProvider  -WhatIf
Set-CsVideoInteropServiceProvider

# 4. Verify and diff
$after = Get-CsVideoInteropServiceProvider
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax — 2 parameter sets

Identity (Default)

Set-CsVideoInteropServiceProvider [-Tenant <System.Guid>] [-AadApplicationIds <String>] [-TenantKey <String>]
 [-InstructionUri <String>] [-AllowAppGuestJoinsAsAuthenticated <Boolean>]
 [[-Identity] <XdsGlobalRelativeIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Instance

Set-CsVideoInteropServiceProvider [-Tenant <System.Guid>] [-AadApplicationIds <String>] [-TenantKey <String>]
 [-InstructionUri <String>] [-AllowAppGuestJoinsAsAuthenticated <Boolean>] [-Instance <PSObject>] [-Force]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (10)

ParameterTypeRequiredWhat it controls
-AadApplicationIds String This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with...
-AllowAppGuestJoinsAsAuthenticated Boolean This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the...
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Force SwitchParameter Bypass all non-fatal errors.
-Identity XdsGlobalRelativeIdentity Specify the VideoInteropServiceProvider to be updated.
-Instance PSObject Pass an existing provider from Get-CsVideoInteropServiceProvider to update (use instead of specifying "Identity")
-InstructionUri String InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI...
-Tenant Guid Internal Microsoft use only.
-TenantKey String Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information...
-WhatIf SwitchParameter Shows what would happen if the cmdlet runs. The cmdlet is not run.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.