--- title: "New-VBRFCDInstantRecoveryMappingOptions" description: "This cmdlet creates the VBRFCDInstantRecoveryMappingOptions object. This object defines mapping settings of virtual disks that you want to restore using the Instant FCD Recovery." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrfcdinstantrecoverymappingoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant First Class Disk (FCD) Recovery > New-VBRFCDInstantRecoveryMappingOptions" dateModified: "2026-08-19" --- # New-VBRFCDInstantRecoveryMappingOptions ## Short Description Defines mapping settings of virtual disks that you want to restore using the Instant FCD Recovery. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet creates the `VBRFCDInstantRecoveryMappingOptions` object. This object defines mapping settings of virtual disks that you want to restore using the Instant FCD Recovery. Run the [`Start-VBRFCDInstantRecovery`](start-vbrfcdinstantrecovery.md) cmdlet to start the FCD instant recovery session. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

All

Defines mapping settings for all backed-up virtual disks.

SwitchParameter

True

Named

False

MountedDiskName

Specifies an array of names for virtual disks that that are mounted to the datastore.

String[]

True

Named

False

NameInBackup

Specifies an array of names for backed-up virtual disks. The cmdlet will define mapping settings for these disks.

String[]

True

Named

False

RegisteredFCDName

Specifies an array of names for FCDs that are registered on the cluster.

String[]

True

Named

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). ## Output Object The cmdlet returns the `VBRFCDInstantRecoveryMappingOptions` object that defines mapping settings of virtual disks that you want to restore using the Instant FCD Recovery. ## Examples ::: example ### Example 1. Defining Mapping Settings of all Virtual Disks to Restore Using Instant FCD Recovery This command defines mapping settings of all backed-up virtual disks that you want to restore using the Instant FCD Recovery. ``` New-VBRFCDInstantRecoveryMappingOptions -All ``` ::: ::: example ### Example 2. Defining Mapping Settings of Specific Virtual Disks to Restore Using Instant FCD Recovery This command defines mapping settings of specific virtual disks that you want to restore using the Instant FCD Recovery. ``` New-VBRFCDInstantRecoveryMappingOptions -NameInBackup "Disk1" -MountedDiskName "RestoredDisk1" -RegisteredFCDName "FCD-Disk1" ``` :::