--- title: "Add-VBRvCloud" description: "This cmdlet adds a new Cloud Director server to Veeam Backup & Replication infrastructure. Run the Add-VBRvCloudVC cmdlet to add a vCenter Server managed by Cloud Director to Veeam Backup & Replication infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrvcloud.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > VMware Cloud Director > Add-VBRvCloud" dateModified: "2026-08-19" --- # Add-VBRvCloud ## Short Description Adds a Cloud Director server to Veeam Backup & Replication. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet adds a new Cloud Director server to Veeam Backup & Replication infrastructure. ::: note Run the [`Add-VBRvCloudVC`](add-vbrvcloudvc.md) cmdlet to add a vCenter Server managed by Cloud Director to Veeam Backup & Replication infrastructure. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Credentials

Specifies the credentials you want to use for authenticating with the Cloud Director server.

If you use the Credentials scenario, the User and Password parameters must be omitted.

CCredentials

True

Named

False

Description

Specifies the description of the new Cloud Director server. If not set, the user name who created the server and the date and time of creation will be added by default.

String

False

Named

False

Name

Specifies the full DNS name or IP address of the Cloud Director server or any cell in the Cloud Director infrastructure.

String

True

0

False

Password

Specifies the password you want to use for authenticating with the Cloud Director server.

If you use the Username/Password scenario, the Credentials parameter must be omitted.

String

True

2

False

Url

Specifies the URL you want to connect to the Cloud Director Web API with.

String

False

Named

False

User

Specifies the user name you want to use for authenticating with the Cloud Director server.

If you use the Username/Password scenario, the Credentials parameter must be omitted.

String

True

1

False

Confirm

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

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). ## Output Object `CHost` ## Examples ::: example ### Example 1. Creating Cloud Director Server with User Name and Password This command creates a new `vCloudDirectorServer` server with the following settings: - The URL address is `https://vclouddirectorserver:443`. - The user name is `Administrator` and the password is `password`. - The description is `Cloud Director Server`. ``` Add-VBRvCloud -Name "vCloudDirectorServer.domain.com" -User Administrator -Password password -Url "https://vclouddirectorserver:443" -Description "Cloud Director Server" ``` ::: ::: example ### Example 2. Creating Cloud Director Server with Saved Credentials This example shows how to create a new `vCloudDirectorServer` server with the following settings: - The URL address is `https://vclouddirectorserver:443`. - The user name is `Administrator` and the password is `password`. - The description is the default one. ``` $administrator = Get-VBRCredentials -Name "Administrator" Add-VBRvCloud -Name "vCloudDirectorServer.domain.com" -Credentials $administrator -Url "https://vclouddirectorserver:443" ``` Perform the following steps: 1. Run the [`Get-VBRCredentials`](get-vbrcredentials.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$administrator` variable. 2. Run the `Add-VBRvCloud` cmdlet. Specify the `Name` parameter value. Set the `$administrator` variable as the `Credentials` parameter value. Specify the `Url` parameter value. ::: ## Related Commands [`Get-VBRCredentials`](get-vbrcredentials.md)