--- title: "Stop-VBRCloudTenantNetworkAppliance" description: "This cmdlet allows the Service Provider to disable network extension appliances configured on the tenant side after a permanent failover." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/stop-vbrcloudtenantnetworkappliance.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Replication Resources > Stop-VBRCloudTenantNetworkAppliance" dateModified: "2026-08-19" --- # Stop-VBRCloudTenantNetworkAppliance ## Short Description Disables network extension appliances on the tenant side. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Stop-VBRCloudTenantNetworkAppliance -Appliance [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet allows the Service Provider to disable network extension appliances configured on the tenant side after a permanent failover. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Appliance

Specifies an array of network extension appliances that you want to disable.

Accepts the VBRCloudTenantNetworkAppliance object. To get this object, run the Get-VBRCloudTenantNetworkAppliance cmdlet.

VBRCloudTenantNetworkAppliance[]

True

Named

True (ByValue)

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Disabling Network Extension Appliances of Selected Tenant This example shows how to disable network extension appliances of the `ABC Company` tenant. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" $appliance = Get-VBRCloudTenantNetworkAppliance -Tenant $tenant Stop-VBRCloudTenantNetworkAppliance -Appliance $appliance ``` Perform the following steps: 1. Run the [`Get-VBRCloudTenant`](get-vbrcloudtenant.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tenant` variable. 2. Run the [`Get-VBRCloudTenantNetworkAppliance`](get-vbrcloudtenantnetworkappliance.md) cmdlet. Set the `$tenant` variable as the `Tenant` parameter value. Save the result to the `$appliance` variable. 3. Run the `Stop-VBRCloudTenantNetworkAppliance` cmdlet. Set the `$appliance` variable as the `Appliance` parameter value. ::: ## Related Commands - [`Get-VBRCloudTenantNetworkAppliance`](get-vbrcloudprovider.md) - [`Get-VBRCloudTenant`](get-vbrcloudtenant.md)