Remove-VBRAzureRestoreProxy
Short Description
Removes a restore proxy appliance from the backup infrastructure.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Remove-VBRAzureRestoreProxy -Proxy <VBRAzureRestoreProxy> [-Wait] [<CommonParameters>] |
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. | True | Named | True |
Wait | Defines that the command waits for the process to complete before accepting more input. | SwitchParameter | False | Named | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
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:
- Run the Get-VBRAzureRestoreProxy cmdlet. Specify the Name parameter value. Save the result to the $Proxy variable.
- Run the Remove-VBRAzureRestoreProxy cmdlet. Set the $Proxy variable as the Proxy parameter value.
Related Commands