--- title: "Remove-VBRPreferredNetwork" description: "This cmdlet removes an array of preferred networks created for the backup infrastructure. The cmdlet will remove all preferred networks added to the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrpreferrednetwork.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Network Traffic Management > Remove-VBRPreferredNetwork" dateModified: "2026-08-19" --- # Remove-VBRPreferredNetwork ## Short Description Removes preferred networks. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRPreferredNetwork -Network [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes an array of preferred networks created for the backup infrastructure. The cmdlet will remove all preferred networks added to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Network

Specifies an array of preferred networks that you want to remove.

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

VBRPreferredNetwork[]

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 Preferred Network This example shows how to remove preferred networks added to the backup infrastructure. ``` $network = Get-VBRPreferredNetwork Remove-VBRNetworkTrafficRule -Network $network ``` Perform the following steps: 1. Run the [`Get-VBRPreferredNetwork`](get-vbrpreferrednetwork.md) cmdlet. Save the result to the `$network` variable. 2. Run the `Remove-VBRNetworkTrafficRule` cmdlet. Set the `$network` variable as the `Network` parameter value. ::: ## Related Commands [`Get-VBRPreferredNetwork`](get-vbrpreferrednetwork.md)