--- title: "Enable-VBRHvProxy" description: "This cmdlet enables the disabled Hyper-V backup proxy. Run the Disable-VBRHvProxy cmdlet to disable the Hyper-V backup proxy." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/enable-vbrhvproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Proxies > Enable-VBRHvProxy" dateModified: "2026-08-19" --- # Enable-VBRHvProxy ## Short Description Enables the disabled Hyper-V backup proxy. **Platform**: Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Enable-VBRHvProxy -Proxy [] ``` ## Detailed Description This cmdlet enables the disabled Hyper-V backup proxy. Run the [`Disable-VBRHvProxy`](disable-vbrhvproxy.md) cmdlet to disable the Hyper-V backup proxy. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Proxy

Specifies an array of Hyper-V proxies you want to enable.

Accepts the CHvProxy[] object. To get this object, run the Get-VBRHvProxy cmdlet.

CHvProxy[]

True

Named

True (ByPropertyName, ByValue)

`` 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). ## Output Object The cmdlet returns the `CHvProxy[]` that contains an array of Hyper-V backup proxy servers added to the backup infrastructure. ## Examples ::: example ### Example 1. Enabling Hyper-V Backup Proxy [Using Variable] This example shows how to enable the Hyper-V backup proxy named `Local Backup Proxy`. ``` $proxy = Get-VBRHvProxy -Name "Local Backup Proxy" Enable-VBRHvProxy -Proxy $proxy ``` Perform the following steps: 1. Run the [`Get-VBRHvProxy`](get-vbrhvproxy.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$proxy` variable. 2. Run the `Enable-VBRHvProxy` cmdlet. Set the `$proxy` variable as the `Proxy` parameter value. ::: ::: example ### Example 2. Enabling Hyper-V Backup Proxy [Using Pipeline] This example shows how to enable the Hyper-V backup proxy named `VMware Backup Proxy 01`. ``` Get-VBRHvProxy -Name "VMware Backup Proxy 01" | Enable-VBRHvProxy ``` Perform the following steps: 1. Run the [`Get-VBRHvProxy`](get-vbrhvproxy.md) cmdlet. Specify the `Name` parameter value. 2. Pipe the cmdlet output to the `Enable-VBRHvProxy` cmdlet. ::: ## Related Commands [`Get-VBRHvProxy`](get-vbrhvproxy.md)