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

Enable-VBRCloudTenant

In this article

    Short Description

    Enables disabled cloud tenant accounts.

    Applies to

    Platform: VMware, Hyper-V

    Product Edition: Standard, Enterprise, Enterprise Plus

    Requires a cloud provider license.

    Syntax

    Enable-VBRCloudTenant -CloudTenant <VBRCloudTenant[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

    Detailed Description

    This cmdlet enables selected cloud tenant accounts that were previously disabled.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Cloud
    Tenant

    Specifies the array of the tenant accounts you want to enable.

    Accepts VBRCloudTenant 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 tenant 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.

    Related Commands

    Get-VBRCloudTenant

    Return Type

    None

    Example 1

    This command enables two cloud tenant accounts represented by the '$CloudUser1' and '$CloudUser2' variables.

    The cloud tenant accounts are obtained by Get-VBRCloudTenant and assigned to the variables beforehand.

    PS C:\PS> Enable-VBRCloudTenant -CloudTenant $CloudUser1, $CloudUser2

    Example 2

    This command enables the ABC company cloud tenant account.

    The cloud tenant account is obtained by running Get-VBRCloudTenant and piped down.

    PS C:\PS> Get-VBRCloudTenant -Name "ABC Company" | Enable-VBRCloudTenant