--- title: "Get-VBRAzureRestoreProxy" description: "This cmdlet returns a restore proxy appliance for restoring backups to Microsoft Azure VMs. Consider the following: If you specify the Id parameter, the cmdlet looks for an exact match and returns a single object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazurerestoreproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Microsoft Azure > Get-VBRAzureRestoreProxy" dateModified: "2026-08-19" --- # Get-VBRAzureRestoreProxy ## Short Description Returns a restore proxy appliance for restoring backups to Microsoft Azure VMs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRAzureRestoreProxy [-Name ] [-Id ] [] ``` ## Detailed Description This cmdlet returns a restore proxy appliance for restoring backups to Microsoft Azure VMs. ::: note Consider the following: - If you specify the `Id` parameter, the cmdlet looks for an exact match and returns a single object. - If you specify the `Name` parameter, the cmdlet searches for the first proxy that matches the specified name. Note that the name is case-insensitive. - If you do not specify parameters, the cmdlet returns all Azure restore proxies added to the backup infrastructure. - If you provide both parameters, the ID parameter takes precedence. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of the restore proxy appliance that you want to get.

Guid

False

Named

False

Name

Specifies a name of the restore proxy appliance that you want to get.

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 [`VBRAzureRestoreProxy`](vbrazurerestoreproxy.md) ## Examples ::: example ### Getting Microsoft Azure Restore Proxy Appliance This command shows how to get the restore proxy appliance by its name. ``` Get-VBRAzureRestoreProxy -Name "AzureProxy-01" ``` :::