Remove-VBOProxy
Short Description
Removes backup proxies.
Syntax
Remove-VBOProxy -Proxy <VBOProxy> [-Force] [-Credential <pscredential>] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to remove a specified backup proxy from Veeam Backup for Microsoft Office 365 infrastructure.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Proxy | Specifies a backup proxy you want to remove. | True | Named | True (ByValue) | False |
Force | Specifies that the confirmation dialog will be suppressed. If you do not provide the parameter, the cmdlet will prompt you to confirm the operation. | False | Named | False | False |
Credential | Specifies Windows user credentials to connect to the backup proxy. The parameter is optional. If you do not provide this parameter, to connect to the backup proxy, the cmdlet will use the account under which you are currently logged in. | False | Named | False | False |
WhatIf | Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Specifies that the cmdlet will prompt you to confirm the operation. If you do not provide this parameter, the confirmation dialog will be suppressed. For more information on choices provided by the confirmation dialog, see Microsoft Docs. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example
This example shows how to remove a backup proxy with the name "tech.support.local" from the Veeam Backup for Microsoft Office 365 configuration.
- Run the Get-VBOProxy cmdlet. Set tech.support.local as the Hostname parameter value. Save the result to the $proxy variable.
- Run the Remove-VBOProxy cmdlet. Set the $proxy variable as the Proxy parameter value.
$proxy = Get-VBOProxy -Hostname "tech.support.local" Remove-VBOProxy -Proxy $proxy |
Related Commands