--- title: "Get-VBRViProxy" description: "Returns a list of VMware backup proxies. Platform: VMware Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns a list of VMware backup proxies managed by Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrviproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Proxies > Get-VBRViProxy" dateModified: "2026-08-19" --- # Get-VBRViProxy ## Short Description Returns a list of VMware backup proxies. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRViProxy [-Name ] [] ``` ## Detailed Description This cmdlet returns a list of VMware backup proxies managed by Veeam Backup & Replication. Run the [`Get-VBRJobProxy`](get-vbrjobproxy.md) cmdlet to get the list of proxies assigned to a specific job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of names of VMware 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 `CViProxy[]` that contains an array of VMware backup proxy servers added to the backup infrastructure. ## Examples ::: example ### Example 1. Getting List of VMware Backup Proxies This command gets a list of all VMware proxies managed by Veeam Backup & Replication. ``` Get-VBRViProxy ``` ::: ::: example ### Example 2. Getting VMware Backup Proxy by Name This command gets the VMware backup proxy with the name `LocalProxy`. ``` Get-VBRViProxy -Name "LocalProxy" ``` :::