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

Enable-VBRViProxy

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>]

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 array of VMware proxies you want to enable.

True

0

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

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

Related Commands

Get-VBRViProxy