Commands › Microsoft Teams

Get-CsTenantNetworkRegion

Microsoft Teams MicrosoftTeams Get-*

Returns information about the network region setting in the tenant. Tenant network region is used for Location Based Routing.

Quick start script

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

# 2. Run and inspect
Get-CsTenantNetworkRegion | Format-List

# 3. Export for evidence / drift tracking
Get-CsTenantNetworkRegion | Export-Clixml .\CsTenantNetworkRegion-$(Get-Date -Format yyyyMMdd).xml

Syntax — 2 parameter sets

Identity (Default)

Get-CsTenantNetworkRegion [[-Identity] <string>] [<CommonParameters>]

Filter

Get-CsTenantNetworkRegion [-Filter <string>] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Filter String The Filter parameter allows you to limit the number of results based on filters you specify.
-Identity String The Identity parameter is a unique identifier that designates the scope. It specifies the collection of tenant network region to be returned.

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