--- title: "Get-VBRIrisInstanceOriginalPath" description: "This cmdlet returns the original paths of InterSystems IRIS instance data stored in a restore point. Use these paths to create path mapping rules with the New-VBRIrisInstancePathMappingRule cmdlet when you restore an InterSystems IRIS instance to..." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbririsinstanceoriginalpath.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policy Settings for InterSystems IRIS > Get-VBRIrisInstanceOriginalPath" dateModified: "2026-08-19" --- # Get-VBRIrisInstanceOriginalPath ## Short Description Returns original paths of InterSystems IRIS instance data in a restore point. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRIrisInstanceOriginalPath -RestorePoint [] ``` ## Detailed Description This cmdlet returns the original paths of InterSystems IRIS instance data stored in a restore point. Use these paths to create path mapping rules with the [`New-VBRIrisInstancePathMappingRule`](new-vbririsinstancepathmappingrule.md) cmdlet when you restore an InterSystems IRIS instance to a different location with the [`Start-VBRIrisInstanceRestore`](start-vbririsinstancerestore.md) cmdlet. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestorePoint

Specifies the restore point for which you want to get original paths of InterSystems IRIS instance data.

Accepts the Object object. To get this object, run the Get-VBRSnapshotRestorePoint cmdlet.

Object

True

Named

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). ## Output Object The cmdlet returns an array of `VBRPath` objects that contain the original paths of InterSystems IRIS instance data. ## Examples ::: example ### Getting Original Paths of an InterSystems IRIS Restore Point This example shows how to get the original paths of InterSystems IRIS instance data stored in a restore point. ``` $rp = Get-VBRSnapshotRestorePoint -ObjectName "IRIS01" Get-VBRIrisInstanceOriginalPath -RestorePoint $rp[0] ``` Perform the following steps: 1. Run the [`Get-VBRSnapshotRestorePoint`](get-vbrsnapshotrestorepoint.md) cmdlet. Specify the `ObjectName` parameter value. Save the result to the `$rp` variable. 2. Run the `Get-VBRIrisInstanceOriginalPath` cmdlet. Set the `$rp` variable as the `RestorePoint` parameter value. ::: ## Related Commands - [`Get-VBRSnapshotRestorePoint`](get-vbrsnapshotrestorepoint.md) - [`New-VBRIrisInstancePathMappingRule`](new-vbririsinstancepathmappingrule.md) - [`Start-VBRIrisInstanceRestore`](start-vbririsinstancerestore.md)