--- title: "Set-VBRTapeMediaPoolOptions (obsolete)" description: "Modifies media pool options." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrtapemediapooloptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Set-VBRTapeMediaPoolOptions (obsolete)" dateModified: "2026-08-19" --- # Set-VBRTapeMediaPoolOptions ## Short Description Modifies media pool options. ::: note This cmdlet is obsolete. The cmdlet will still work but it is recommended to perform the tape restore operation with Veeam Backup & Replication UI for full functionality. ::: **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRTapeMediaPoolOptions [-MediaPool] [-Options] [] ``` ## Detailed Description Modifies media pool options. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

MediaPool

Specifies the media pool that you want to modify.

Accepts the CTapeMediaPool object. To create this object, run the Get-VBRTapeMediaPool cmdlet.

CTapeMediaPool

True

0

True (ByPropertyName, ByValue)

Options

Specifies the media pool options. The cmdlet will modify these options.

Accepts the PSMediaPoolOptions object. To get this object, run the Get-VBRTapeMediaPoolOptions cmdlet.

PSMediaPoolOptions

True

1

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. Modifying Media Pool Options This example shows how to modify options of the `Weekly` media pool. The new media set name is set to `Weekly Media Set`. ```powershell $mediapool = Get-VBRTapeMediaPool -Name "Weekly" $options = Get-VBRTapeMediaPoolOptions -MediaPool $mediapool $options.MediaSetName = "Weekly Media Set" Set-VBRTapeMediaPoolOptions -MediaPool $mediapool -Options $options ``` Perform the following steps: 1. Run the [`Get-VBRTapeMediaPool`](get-vbrtapemediapool.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$mediapool` variable. 2. Run the [`Get-VBRTapeMediaPoolOptions`](get-vbrtapemediapooloptions.md) cmdlet. Set the `$mediapool` variable as the `MediaPool` parameter value. Save the result to the `$options` variable. 3. Set the `MediaSetName` property of the `$options` variable to `Weekly Media Set`. 4. Run the `Set-VBRTapeMediaPoolOptions` cmdlet. Specify the following settings: - Set the `$mediapool` variable as the `MediaPool` parameter value. - Set the `$options` variable as the `Options` parameter value. ::: ## Related Commands - [`Get-VBRTapeMediaPool`](get-vbrtapemediapool.md) - [`Get-VBRTapeMediaPoolOptions`](get-vbrtapemediapooloptions.md)