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

Disable-VBRViProxy

Short Description

Disables a VMware backup proxy.

Applies to

Platform: VMware

For Hyper-V, run Disable-VBRHvProxy.

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

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

Related Commands

Get-VBRViProxy

Detailed Description

This cmdlet allows you to temporarily disable a VMware backup proxy. The disabled proxy is not used by any job.

You can enable the proxy at any time by running Enable-VBRViProxy.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Proxy

Specifies the VMware backup proxy you want to disable.

You can assign multiple proxies to this object.

True

Named

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 disables the selected VMware proxies named "VMware Backup Proxy 01", "VMware Backup Proxy 05". The proxies are obtained with Get-VBRViProxy by selecting by names and piped down.

Get-VBRViProxy -Name "VMware Backup Proxy 01", "VMware Backup Proxy 05" | Disable-VBRViProxy

Example 2

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

Disable-VBRViProxy -Proxy $proxy