--- title: "Add-VBRSmbV3Cluster" description: "Adds an SMB3 cluster to the backup infrastructure. Platform: Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet adds an SMB3 cluster to the backup inf" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrsmbv3cluster.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Virtualization Servers and Hosts > Add-VBRSmbV3Cluster" dateModified: "2026-08-19" --- # Add-VBRSmbV3Cluster ## Short Description Adds an SMB3 cluster to the backup infrastructure. **Platform**: Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet adds an SMB3 cluster to the backup infrastructure. Run the [`Add-VBRSmbV3Host`](add-vbrsmbv3host.md) cmdlet to add a standalone SMB3 server to the backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Credentials

Specifies the credentials you want to use for authenticating with the SMB3 cluster.

Accepts the CCredentials object. To get this object, run the Get-VBRCredentials cmdlet

CCredentials

True

Named

False

Description

Specifies the description of the SMB3 cluster.

String

False

Named

False

Name

Specifies the full DNS name or IP address of the SMB3 cluster.

String

True

Named

False

Password

Specifies the password you want to use for authenticating with the SMB3 cluster.

String

True

Named

False

User

Specifies the user name you want to use for authenticating with the SMB3 cluster.

String

True

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. Adding New SMB3 Cluster Using User Name and Password This command adds a new SMB3 cluster named `SMBCLUSTER01` with the `Administrator` user name and the `qwerty` password of the account. The description is `Hyper-V SMB Share Cluster 01`. ``` Add-VBRSmbV3Cluster -Name "SMBCLUSTER01" -User "Administrator" -Password "qwerty" -Description "Hyper-V SMB Share Cluster 01" ``` ::: ::: example ### Example 2. Adding New SMB3 Cluster Using Credentials This example shows how to add a new SMB3 cluster named `SMBCLUSTER01` using credentials. The description is `Hyper-V SMB Share Cluster 01`. ``` $Administrator = Get-VBRCredentials Add-VBRSmbV3Cluster -Name "SMBCLUSTER01" -Description "Hyper-V SMB Share Cluster 01" -Credentials $Administrator ``` Perform the following steps: 1. Run the [`Get-VBRCredentials`](get-vbrcredentials.md) cmdlet. Save the result to the `$Administrator` variable. 2. Run the `Add-VBRSmbV3Cluster` cmdlet. Specify the `Name` parameter value. Specify the `Description` parameter value. Set the `$Administrator` variable as the `Credentials` parameter value. ::: ## Related Commands [`Get-VBRCredentials`](get-vbrcredentials.md)