Remove-VBOProxyPool
Short Description
Removes backup proxy pools.
Syntax
|
Remove-VBOProxyPool -Pool <VBOProxyPool> [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet allows you to remove backup proxy pools from the Veeam Backup for Microsoft 365 infrastructure.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Pool |
Specifies a backup proxy pool. The cmdlet will remove this backup proxy pool from the Veeam Backup for Microsoft 365 infrastructure.
Accepts the
To get this object, run the |
True |
Named |
True (ByValue) |
|
|
Confirm |
Defines that the cmdlet will display a prompt that asks if the user is sure that he wants to continue. Default: True |
|
False |
Named |
False |
|
WhatIf |
Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action. Default: False |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.
Examples
Removing Backup Proxy Pool from Veeam Backup for Microsoft 365 Infrastructure
This example shows how to remove a backup proxy pool with the Pool name from the Veeam Backup for Microsoft 365 infrastructure.
|
$proxypool = Get-VBOProxyPool -Name "Pool" Remove-VBOProxyPool -Pool $proxypool |
Perform the following steps:
- Run the
Get-VBOProxyPoolReturns backup proxy pools added to the Veeam Backup for Microsoft 365 infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$proxypoolvariable. - Run the
Remove-VBOProxyPoolcmdlet. Set the$proxypoolvariable as thePoolparameter value.
Related Commands
Get-VBOProxyPoolReturns backup proxy pools added to the Veeam Backup for Microsoft 365 infrastructure.