This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRCloudProvider

Short Description

Removes service providers.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Requires a cloud provider license.

Syntax

Remove-VBRCloudProvider -CloudProvider <VBRCloudProvider[]> [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes service provider from Veeam Backup & Replication.

When you remove a service provider, you become unable to reach your cloud repository. The data stored on the cloud repository remains. You can access it if you add the service provider to the Veeam backup console again.

Important

Mind the following:

  • This cmdlet is not available for the Veeam Backup Starter license.
  • You cannot remove a service provider if its cloud repositories are used by any backup jobs.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Cloud
Provider

Specifies the array of cloud providers you want to remove.

Accepts VBRCloudProvider type.

True

Named

True (ByValue,
ByProperty
Name)

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 on common parameters, see the About CommonParameters section of Microsoft Docs.

Return Type

None

Example 1

This command removes all cloud service providers added to Veeam Backup & Replication.

The service providers are obtained by Get-VBRCloudProvider and piped down.

Get-VBRCloudProvider | Remove-VBRCloudProvider

Example 2

This command removes a service provider represented by the '$CloudProvider1' variable.

The service provider is obtained by Get-VBRCloudProvider and assigned to the variable beforehand.

Remove-VBRCloudProvider -CloudProvider $CloudProvider1

Example 3

This command removes a service provider with the 104.45.95.227 IP address.

The service provider is obtained by Get-VBRCloudProvider and piped down.

Get-VBRCloudProvider -Name "104.45.95.227" | Remove-VBRCloudProvider

Related Commands

Get-VBRCloudProvider