--- title: "Remove-VBRCloudPublicIP" description: "This cmdlet removes a selected IP address from the public IP addresses pool." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrcloudpublicip.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Replication Resources > Remove-VBRCloudPublicIP" dateModified: "2026-08-19" --- # Remove-VBRCloudPublicIP ## Short Description Removes IP addresses from public IP addresses pools. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a VCP license. ## Syntax ``` Remove-VBRCloudPublicIP -CloudIp [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes a selected IP address from the public IP addresses pool. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CloudIp

Specifies the array of IP addresses that you want to remove.

Accepts the VBRCloudIP[] object. To get this object, run the Get-VBRCloudPublicIP cmdlet.

VBRCloudIP[]

True

Named

True (ByPropertyName, ByValue)

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

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.

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Removing IP Address from Pool of Public IP Addresses This example shows how to remove the first IP address from the configured pool of public IP addresses. ``` $ip = Get-VBRCloudPublicIP Remove-VBRCloudPublicIP -CloudIP $ip[0] ``` Perform the following steps: 1. Run the [`Get-VBRCloudPublicIP`](get-vbrcloudpublicip.md) cmdlet. Save the pool to the `$ip` variable. Mind the ordinal number of the necessary IP address (in our example, it is the first IP address in the array). 2. Run the `Remove-VBRCloudPublicIP` cmdlet. Set the `$ip` variable as the `CloudIP` parameter value. ::: ::: example ### Example 2. Removing IP Address from Pool of Public IP Addresses This example shows how to remove all IP addresses assigned to the `ABC Company` cloud tenant. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" $ip = Get-VBRCloudPublicIP -Tenant $tenant Remove-VBRCloudPublicIP -CloudIP $ip ``` Perform the following steps: 1. Run the [`Get-VBRCloudTenant`](get-vbrcloudtenant.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tenant` variable. 2. Run the [`Get-VBRCloudPublicIP`](get-vbrcloudpublicip.md) cmdlet. Set the `$tenant` variable as the `Tenant` parameter value. Save the result to the `$ip` variable. 3. Run the `Remove-VBRCloudPublicIP` cmdlet. Set the `$ip` variable as the `CloudIP` parameter value. ::: ## Related Commands [`Get-VBRCloudPublicIP`](get-vbrcloudpublicip.md)