--- title: "Get-VBRRecoveryMediaTarget" description: "This cmdlet returns available bootable media for creating Veeam Recovery Media. You can get the list of all media or search for instances directly by name or type." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrrecoverymediatarget.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Managing Protected Computers > Veeam Agent Management Recovery Media > Get-VBRRecoveryMediaTarget" dateModified: "2026-08-19" --- # Get-VBRRecoveryMediaTarget ## Short Description Returns available bootable media for creating Veeam Recovery Media. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns available bootable media for creating Veeam Recovery Media. You can get the list of all media or search for instances directly by name or type. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of bootable media names. The cmdlet will return available bootable media with these names.

String[]

False

Named

True (ByPropertyName)

Type

Specifies the array of bootable media types. The cmdlet will return available bootable media.

VBRRecoveryMediaType[]

False

Named

True (ByPropertyName)

`` 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). ## Output Object The cmdlet returns the `VBRRecoveryMediaTarget[]` object that contains an array of available bootable media for creating Veeam Recovery Media. ## Examples ::: example ### Example 1. Getting All Available Bootable Media This command returns all available bootable media. ``` Get-VBRRecoveryMediaTarget ``` ::: ::: example ### Example 2. Getting All Removable Bootable Media This command returns all attached removable storage devices that can be used for creating Veeam Recovery Media. ``` Get-VBRRecoveryMediaTarget -Type RemovableDevice ``` :::