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

Remove-VBRCloudProvider

In this article

    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>]

    Related Commands

    Get-VBRCloudProvider

    Return Type

    None

    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.

    Remove-VBRCloudProvider Important!

    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 object.

    True

    Named

    True (by Value
    FromPipeline, ValueFromPipeline
    ByPropertyName)

    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 1

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

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

    PS C:\PS> 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.

    PS C:\PS> 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.

    PS C:\PS> Get-VBRCloudProvider -Name "104.45.95.227" | Remove-VBRCloudProvider