Get-VBRRecoveryMediaTarget

Short Description

Returns available bootable media for creating Veeam Recovery Media.

Applies to

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

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get all available bootable media.

Get-VBRRecoveryMediaTarget  [<CommonParameters>]

  • Get available bootable media by name.

Get-VBRRecoveryMediaTarget [-Name <string[]>]  [<CommonParameters>]

  • Get available bootable media by type (RemovableDevice/OpticalDrive).

Get-VBRRecoveryMediaTarget [-Type <VBRRecoveryMediaType[]> {RemovableDevice | OpticalDrive}]  [<CommonParameters>]

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 (ByProperty
Name)

Type

Specifies the array of bootable media types:

  • RemovableDevice: removable storage devices
  • OpticalDrive: CD, DVD and BD drives

The cmdlet will return available bootable media of these types.

VBRRecoveryMediaType[]

False

Named

True (ByProperty
Name)

<CommonParameters>

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

Output Object

The cmdlet returns the VBRRecoveryMediaTarget[] object that contains an array of available bootable media for creating Veeam Recovery Media.

Examples

Get-VBRRecoveryMediaTargetExample 1. Getting All Available Bootable Media

This command returns all available bootable media.

Get-VBRRecoveryMediaTarget

Get-VBRRecoveryMediaTargetExample 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