--- title: "Get-VBRHvProxy" description: "Returns a list of the Hyper-V backup proxies. Platform: Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns a list of the Hyper-V backup proxies added to the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrhvproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Proxies > Get-VBRHvProxy" dateModified: "2026-08-19" --- # Get-VBRHvProxy ## Short Description Returns a list of the Hyper-V backup proxies. **Platform**: Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRHvProxy [-Name ] [] ``` ## Detailed Description This cmdlet returns a list of the Hyper-V backup proxies added to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of names of the Hyper-V proxies. The cmdlet will return proxies with these names.

String[]

False

Named

False

`` 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. Getting List of Hyper-V Backup Proxies This commands gets the list of all the Hyper-V proxies added to the backup infrastructure. ``` Get-VBRHvProxy ``` ::: ::: example ### Example 2. Getting Hyper-V Backup Proxy by Name This command gets the Hyper-V backup proxy with the name `LocalProxy`. ``` Get-VBRHvProxy -Name "LocalProxy" ``` :::