Commands › Microsoft Teams

Set-CsTeamsRoomVideoTeleConferencingPolicy

Microsoft Teams MicrosoftTeams Set-*

Modifies the property of an existing TeamsRoomVideoTeleConferencingPolicy.

Quick start script

# Set-CsTeamsRoomVideoTeleConferencingPolicy — 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-CsTeamsRoomVideoTeleConferencingPolicy
$before | Format-List

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

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

Syntax

Set-CsTeamsRoomVideoTeleConferencingPolicy [-AreaCode <String>] [-Description <String>] [-Enabled <Boolean>]
 [[-Identity] <String>] [-PlaceExternalCalls <String>] [-PlaceInternalCalls <String>]
 [-ReceiveExternalCalls <String>] [-ReceiveInternalCalls <String>] [-MsftInternalProcessingMode <String>]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (11)

ParameterTypeRequiredWhat it controls
-AreaCode String GUID provided by the CVI partner that the customer signed the agreement with
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Description String Enables administrators to provide additional text to accompany the policy. For example, the Description might include information about the users the policy should be assigned to.
-Enabled Boolean The policy can exist for the tenant but it can be enabled or disabled.
-Identity String Unique identifier for the policy to be modified.
-MsftInternalProcessingMode String For internal use only.
-PlaceExternalCalls String The IT admin can configure that their Teams rooms are enabled to place external calls or not, meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are outside their own tenant. Value:...
-PlaceInternalCalls String The IT admin can configure that their Teams rooms are enabled to place internal calls or not. Meaning calls from the Microsoft Teams Rooms to Video teleconferencing devices that are within their own tenant. Value:...
-ReceiveExternalCalls String The IT admin can configure that their Teams rooms are enabled to receive external calls or not, meaning calls from Video teleconferencing devices that are outside their own tenant. Value: Enabled, Disabled
-ReceiveInternalCalls String The IT admin can configure that their Teams rooms are enabled to receive external calls or not. Meaning calls from Video Teleconferencing devices from their own tenant Value: Enabled, Disabled
-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.