--- title: "Add-VSBHvVirtualLab (obsolete)" description: "This cmdlet creates a new Hyper-V virtual lab." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vsbhvvirtuallab.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Add-VSBHvVirtualLab (obsolete)" dateModified: "2026-08-19" --- # Add-VSBHvVirtualLab ## Short Description Creates a Hyper-V virtual lab. ::: note This cmdlet is obsolete and not supported. Run the [`Add-VBRApplicationGroup`](add-vbrapplicationgroup.md) cmdlet instead. ::: **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Add-VSBHvVirtualLab [-Name ] [-Server ] [-Folder ] [] ``` ## Detailed Description This cmdlet creates a new Hyper-V virtual lab. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Folder

Specifies the path to the folder where the redo log files of the virtual lab will be stored.

String

False

Named

False

Name

Specifies the name you want to assign to the virtual lab.

String

False

Named

False

Server

Specifies the Hyper-V host where the virtual lab should be created.

CHost

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). ## Examples ::: example ### Creating Hyper-V Virtual Lab This example shows how to create the `Exchange VLab 01` Hyper-V virtual lab. ``` $server = Get-VBRServer -Name "esx05.tech.local" Add-VSBHvVirtualLab -Name "Exchange VLab 01" -Server $server -Folder "c:\VirtualLabs" ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter. Save the result to the `$server` variable. 2. Run the `Add-VSBHvVirtualLab` cmdlet. Specify the `Name` parameter. Set the `$server` variable as the `Server` parameter value. Specify the `Path` parameter. ::: ## Related Commands [`Get-VBRServer`](get-vbrserver.md)