--- title: "Remove-VBOProxyPool" description: "This cmdlet allows you to remove backup proxy pools from the Veeam Backup for Microsoft 365 infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/remove-vboproxypool.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Backup Proxy Pools > Remove-VBOProxyPool" dateModified: "2026-08-21" --- # Remove-VBOProxyPool ## Short Description Removes backup proxy pools. ## Syntax ``` Remove-VBOProxyPool -Pool [-WhatIf] [-Confirm] [] ``` ## 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 VBOProxyPool object.

To get this object, run the Get-VBOProxyPool cmdlet.

VBOProxyPool

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

SwitchParameter

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

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### 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: 1. Run the [`Get-VBOProxyPool`](get-vboproxypool.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$proxypool` variable. 2. Run the `Remove-VBOProxyPool` cmdlet. Set the `$proxypool` variable as the `Pool` parameter value. ::: ## Related Commands [`Get-VBOProxyPool`](get-vboproxypool.md)