Remove-VBRTapeMediaPool

Short Description

Removes a media pool.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Remove-VBRTapeMediaPool -MediaPool <VBRTapeMediaPool[]> [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes a selected media pool from Veeam Backup & Replication.

Remove-VBRTapeMediaPool Important!

Removing media pools has the following restrictions:

  • You can only delete custom media pools; predefined media pools cannot be deleted.
  • You cannot delete a media pool that contains tapes. To be able to delete such a pool, first move tapes from this pool to other media pools.
  • You cannot delete media pools used by an existing backup/files to tape copy job. In case you definitely have to disable this pool, you should first modify the corresponding job to target another media pool.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

MediaPool

Specifies the array of media pools. The cmdlet will remove these media pools.

Accepts the VBRTapeMediaPool object, GUID or string. To get this object, run the Get-VBRTapeMediaPool cmdlet.

True

Named

True (ByValue,
ByProperty
Name)

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

Confirm

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

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Remove-VBRTapeMediaPoolExample 1. Removing Media Pool [Using Pipeline]

This example shows how to remove the media pool named Winserver MediaPool.

Get-VBRTapeMediaPool -Name "Winserver MediaPool" | Remove-VBRTapeMediaPool

Perform the following steps:

  1. Run the Get-VBRTapeMediaPool cmdlet. Specify the Name parameter value.
  2. Pipe the cmdlet output to the Remove-VBRTapeMediaPool cmdlet.

Remove-VBRTapeMediaPoolExample 2. Removing Media Pool [Using Variable]

This example shows how to remove the media pool represented by the $pool variable.

$pool = Get-VBRTapeMediaPool -Name "Winserver MediaPool"

Remove-VBRTapeMediaPool -MediaPool $pool

Perform the following steps:

  1. Run the Get-VBRTapeMediaPool cmdlet. Specify the Name parameter value. Save the result to the $pool variable.
  2. Run the Remove-VBRTapeMediaPool cmdlet. Set the $pool variable as the MediaPool parameter value.

Related Commands

Get-VBRTapeMediaPool

Page updated 4/10/2024

Page content applies to build 12.1.1.56