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

Enable-VBRViProxy

In this article

    Short Description

    Enables a VMware backup proxy that was previously disabled.

    Applies to

    Platform: VMware

    For Hyper-V, run Enable-VBRHvProxy.

    Product Edition: Standard, Enterprise, Enterprise Plus

    Syntax

    Enable-VBRViProxy -Proxy <CViProxy[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

    Related Commands

    Get-VBRViProxy

    Detailed Description

    This cmdlet allows you to enable a VMware backup proxy.

    You can disable a proxy by running Disable-VBRViProxy.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Proxy

    Specifies the VMware backup proxy you want to enable.

    You can assign multiple proxies to this object.

    True

    0

    True (ByValue,
    ByProperty
    Name)

    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 enables the selected VMware proxy named "VMwareProxy". The needed proxy is obtained with Get-VBRViProxy and piped down.

    Get-VBRViProxy -Name "VMwareProxy" | Enable-VBRViProxy

    Example 2

    This command enables the selected VMware proxy represented by the $proxy variable. The needed proxy is obtained with Get-VBRViProxy and assigned to the variable beforehand.

    Enable-VBRViProxy -Proxy $proxy