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

Remove-VSBHvVirtualLab

Short Description

Removes a Hyper-V virtual lab.

Remove-VSBHvVirtualLab Note:

This cmdlet is deprecated and will be marked as obsolete in the future. It is recommended to re-write your scripts using the cmdlet.

Applies to

Product Edition: Enterprise, Enterprise Plus

Syntax

Remove-VSBHvVirtualLab [-VirtualLab] <CHvSbVirtualLab[]> [-FromHost] [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes Hyper-V virtual labs.

You can remove virtual labs from the Veeam Backup & Replication console or from Hyper-V hosts. To remove virtual labs from Hyper-V hosts, use the FromHost parameter.

If you remove a virtual lab from the Veeam Backup & Replication console, you can add it back by running Connect-VSBHvVirtualLab.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

VirtualLab

Specifies the array of virtual lab names. The cmdlet will remove these virtual labs.

True

Named

True(ByValue,
ByProperty
Name)

False

FromHost

Indicates that the cmdlet will remove virtual labs from Hyper-V hosts.

False

Named

False

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 user is sure that they want to continue.

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This example shows how to remove a virtual lab from the Veeam Backup & Replication console.

You will need to perform the following steps:

  1. Run Get-VSBHvVirtualLab to get the virtual lab you want to remove. Save the result to the $vlab variable.
  2. Run Remove-VSBHvVirtualLab with the $vlab variable.

$vlab = Get-VSBHvVirtualLab -Name "Virtual Lab 01"

Remove-VSBHvVirtualLab -VirtualLab $vlab

Example 2

This example shows how to remove a virtual lab from the Hyper-V host.

You will need to perform the following steps:

  1. Run Get-VSBHvVirtualLab to get the virtual lab you want to remove. Save the result to the $vlab variable.
  2. Run Remove-VSBHvVirtualLab with the $vlab variable and the FromHost parameter.

$vlab = Get-VSBHvVirtualLab -Name "Virtual Lab 01"

Remove-VSBHvVirtualLab -VirtualLab $vlab -FromHost

Related Commands

Get-VSBHvVirtualLab