Short Description
Removes backup proxies.
Syntax
Remove-VBOProxy -Proxy <VBOProxy> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to remove a specified backup proxy from Veeam Backup for Microsoft Office 365.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Proxy | Specifies a backup proxy you want to remove. | True | Named | True (ByValue) | False |
Force | Indicates that the cmdlet will remove a backup proxy without notifying the user. | 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 whether the cmdlet displays a prompt that asks if the user is sure that they want to continue. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to remove a backup proxy.
You will need to perform the following steps:
- Run Get-VBOProxy to get the backup proxy. Save the result to the $proxy variable.
- Run Remove-VBOProxy with the $proxy variable.
PS C:\PS> $proxy = Get-VBOProxy -Hostname "tech.support.local" PS C:\PS> Remove-VBOProxy -Proxy $proxy |
Related Commands