--- title: "Get-VBRTapeMediaPoolOptions (obsolete)" description: "This cmdlet returns settings applied to a selected media pool." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrtapemediapooloptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VBRTapeMediaPoolOptions (obsolete)" dateModified: "2026-08-19" --- # Get-VBRTapeMediaPoolOptions ## Short Description Returns settings of a selected media pool. ::: note This cmdlet is obsolete. The cmdlet will still work but may not be supported in further versions. ::: **Platform**: VMware, Hyper-V ## Syntax ``` Get-VBRTapeMediaPoolOptions [-MediaPool] [] ``` ## Detailed Description This cmdlet returns settings applied to a selected media pool. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

MediaPool

Specifies the media pool for which you want to get the settings.

Accepts the MediaPool object. To get this object, run the Get-VBRTapeMediaPool cmdlet.

CTapeMediaPool

True

0

True (ByPropertyName, ByValue)

`` 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. Getting Media Pool Settings This example shows how to get settings of the `Weekly` media pool. ```powershell $mediapool = Get-VBRTapeMediaPool -Name "Weekly" Get-VBRTapeMediaPoolOptions -MediaPool $mediapool ``` 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` cmdlet. Set the `$mediapool` variable as the `MediaPool` parameter value. ::: ## Related Commands [`Get-VBRTapeMediaPool`](get-vbrtapemediapool.md)