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 | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Proxy | Specifies a backup proxy. The cmdlet will remove this backup prosy from the Veeam Backup for Microsoft Office 365 infrastructure. | Accepts the VBOProxy object. To get this object, run the Get-VBOProxy cmdlet. | True | Named | True (ByValue) |
Force | Defines that the cmdlet will remove a backup proxy server without showing warnings in the PowerShell console. If you do not provide the parameter, the cmdlet will prompt you to confirm the operation. | SwitchParameter | False | Named | False |
Credential | Specifies Windows credentials. The cmdlet will use these credentials to connect to the backup proxy server. If you omit this parameter, to connect to the backup proxy server, the cmdlet will use the Windows credentials under which you are currently logged in. | SwitchParameter | False | Named | False |
WhatIf | Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | SwitchParameter | False | Named | False |
Confirm | Defines that the cmdlet will prompt you to confirm the operation. | SwitchParameter | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Examples
Removing Backup Proxy From Veeam Backup for Microsoft Office 365 Infrastructure
This example shows how to remove the tech.support.local backup proxy from the Veeam Backup for Microsoft Office 365 infrastrucure.
$proxy = Get-VBOProxy -Hostname "tech.support.local" Remove-VBOProxy -Proxy $proxy |
Perform the following steps:
- Run the Get-VBOProxy cmdlet. Specify 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.
Related Commands