This is an archive version of the document. To get the most up-to-date information, see the current version.

New-VBRRecoveryMediaISOTarget

Short Description

Creates the path for saving Veeam Recovery Media in the ISO file format.

Applies to

Product Edition: Community, Standard, Enterprise, Enterprise Plus

Syntax

This cmdlet provides 2 parameter sets.

  • For creating the user defined Veeam Recovery Media ISO file path.

New-VBRRecoveryMediaISOTarget -Path <string>  [<CommonParameters>]

  • For creating the default Veeam Recovery Media ISO file path.

New-VBRRecoveryMediaISOTarget -DiscoveredComputer <VBRDiscoveredComputer>  [<CommonParameters>]

Detailed Description

This cmdlet creates the VBRRecoveryMediaISOTarget object. This object contains the path to the ISO file. Use this object to create Veeam Recovery Media in the ISO file format with the Add-VBRDiscoveredComputerRecoveryMedia cmdlet.

You can specify the full path to the ISO file or use the default one. The default ISO file path includes the path to the "Documents" folder and the ISO file name containing the name of the protected computer.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Path

Specifies the path for saving Veeam Recovery Media in the ISO file format. The cmdlet will create the object containing this file path.

False

Named

True (ByProperty
Name)

False

Discovered
Computer

Specifies a discovered computer. The cmdlet will create the object containing the default Veeam Recovery Media ISO file path for this computer.

Accepts the VBRDiscoveredComputer type.

False

Named

True (ByProperty
Name)

True

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Return Type

VBRRecoveryMediaTarget[]

Example 1

This example shows how to create the user defined Veeam Recovery Media ISO file path.

New-VBRRecoveryMediaISOTarget -Path "c:\image.iso"

Path                                                                                             Type

----                                                                                             ----

c:\image.iso                                                                                      ISO

Example 2

This example shows how to create the default Veeam Recovery Media ISO file path for a selected computer.

You will need to perform the following steps:

  1. Run Get-VBRDiscoveredComputer with the Where-Object method to get the computer. Save the result to the $computer variable.
  2. Run New-VBRRecoveryMediaISOTarget with the $computer variable to create the default Veeam Recovery Media ISO file path.

$computer = Get-VBRDiscoveredComputer | Where {$_.name -eq "support.east.local"}

New-VBRRecoveryMediaISOTarget -DiscoveredComputer $computer

Path                                                                                             Type

----                                                                                             ----

C:\Users\Administrator\Documents\VeeamRecoveryMedia_SUPPORT.EAST.LOCAL.iso                        ISO

Related Commands

Get-VBRDiscoveredComputer

Add-VBRDiscoveredComputerRecoveryMedia