--- title: "Remove-VBRAzureRestoreProxy" description: "This cmdlet removes a restore proxy appliance for restoring backups to Microsoft Azure VMs from the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrazurerestoreproxy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Microsoft Azure > Remove-VBRAzureRestoreProxy" dateModified: "2026-08-19" --- # Remove-VBRAzureRestoreProxy ## Short Description Removes a restore proxy appliance from the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRAzureRestoreProxy -Proxy [-Wait] [] ``` ## Detailed Description This cmdlet removes a restore proxy appliance for restoring backups to Microsoft Azure VMs from the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Proxy

Specifies the restore proxy appliance that you want to remove.

Accepts the VBRAzureRestoreProxy object. To get this object, run the Get-VBRAzureRestoreProxy cmdlet.

VBRAzureRestoreProxy

True

Named

False

Wait

Defines that the command waits for the process to complete before accepting more input.

SwitchParameter

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). ## Examples ::: example ### Removing Microsoft Azure Restore Proxy Appliance from Backup Infrastructure This example shows how to remove a restore proxy appliance from the backup infrastructure. ``` $Proxy = Get-VBRAzureRestoreProxy Name "AzureProxy-01" Remove-VBRAzureRestoreProxy -Proxy $Proxy ``` Perform the following steps: 1. Run the [`Get-VBRAzureRestoreProxy`](get-vbrazurerestoreproxy.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$Proxy` variable. 2. Run the `Remove-VBRAzureRestoreProxy` cmdlet. Set the `$Proxy` variable as the `Proxy` parameter value. ::: ## Related Commands [`Get-VBRAzureRestoreProxy`](get-vbrazurerestoreproxy.md)