This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRWANAccelerator

In this article

    Short Description

    Removes a WAN accelerator.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Enterprise Plus

    Syntax

    Remove-VBRWANAccelerator -Accelerator <CWanAccelerator> [<CommonParameters>]

    Related Commands

    Get-VBRWANAccelerator

    Detailed Description

    This cmdlet removes the selected WAN accelerator.

    When you remove a WAN accelerator, Veeam Backup & Replication unassigns the accelerator role from the server, so it is no longer used as a WAN accelerator. The actual server remains connected to Veeam Backup & Replication.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Accelerator

    Specifies the WAN accelerator you want to remove.

    True

    Named

    False

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example 1

    This command removes the WAN Accelerator named "WANAccelerator 1". The accelerator is obtained with Get-VBRWANAccelerator and piped down.

    PS C:\PS> Get-VBRWANAccelerator -Name "WANAccelerator 1" | Remove-VBRWANAccelerator

    Example 2

    This command removes the WAN accelerator represented by the $a variable. The accelerator is obtained with Get-VBRWANAccelerator and assigned to the $a variable beforehand.

    PS C:\PS> Remove-VBRWANAccelerator -Accelerator $a