--- title: "Remove-VBRNetworkTrafficRule" description: "This cmdlet removes network traffic rules from the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrnetworktrafficrule.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Network Traffic Management > Remove-VBRNetworkTrafficRule" dateModified: "2026-08-19" --- # Remove-VBRNetworkTrafficRule ## Short Description Removes network traffic rules. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRNetworkTrafficRule -Rule [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes network traffic rules from the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Rule

Specifies an array of network traffic rules that you want to remove.

Accepts the VBRNetworkTrafficRule[] object. To get this object, run the Get-VBRNetworkTrafficRule cmdlet.

VBRNetworkTrafficRule[]

True

Named

True (ByValue)

Confirm

Defines whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

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 whether the cmdlet writes 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 ### Removing Network Traffic Rule This example shows how to remove a network traffic rule from the backup infrastructure. ``` $rule = Get-VBRNetworkTrafficRule -Name "Rule #5" Remove-VBRNetworkTrafficRule -Rule $rule ``` Perform the following steps: 1. Run the [`Get-VBRNetworkTrafficRule`](get-vbrnetworktrafficrule.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$rule` variable. 2. Run the `Remove-VBRNetworkTrafficRule` cmdlet. Set the `$rule` variable as the `Rule` parameter value. ::: ## Related Commands [`Get-VBRNetworkTrafficRule`](get-vbrnetworktrafficrule.md)