--- title: "Add-VBRHvScvmm" description: "Adds a Hyper-V SCVMM server to the backup infrastructure. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet adds a Hyper-V SCVMM (Microsoft System Center Vir" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrhvscvmm.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Virtualization Servers and Hosts > Add-VBRHvScvmm" dateModified: "2026-08-19" --- # Add-VBRHvScvmm ## Short Description Adds a Hyper-V SCVMM server to the backup infrastructure. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet adds a Hyper-V SCVMM (Microsoft System Center Virtual Machine Manager) 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 SCVMM server.

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

CCredentials

True

Named

False

Description

Specifies the description of the SCVMM server.

String

False

Named

False

Name

Specifies the DNS name of the added SCVMM server.

String

True

Named

False

Password

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

String

True

Named

False

User

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

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). ## Output Object The cmdlet returns the `CHost` object that contains settings of the Hyper-V SCVMM server added to the backup infrastructure. ## Examples ::: example ### Example 1. Adding SCVMM Server Using Account User Name and Password This command adds the `SCVMM1 SCVMM` server with the `Administrator` user name and the `qwerty` password of the account. ``` Add-VBRHvScvmm -Name "SCVMM1" -User "Administrator" -Password "qwerty" -Description "SCVMM Server" ``` ::: ::: example ### Example 2. Adding SCVMM Server Using Credentials Managed by Veeam Backup & Replication This example shows how to add the `SCVMM1 SCVMM` server using the credentials managed by Veeam Backup & Replication. ``` $Administrator = Get-VBRCredentials Add-VBRHvScvmm -Name "SCVMM1" -Description "SCVMM Server" -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-VBRHvScvmm` 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)