--- title: "Get-VBRSnapshotBackup" description: "This cmdlet returns InterSystems IRIS snapshot backups created by application backup policies. Use the returned object to get restore points with the Get-VBRSnapshotRestorePoint cmdlet." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrsnapshotbackup.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-VBRSnapshotBackup" dateModified: "2026-08-19" --- # Get-VBRSnapshotBackup ## Short Description Returns InterSystems IRIS snapshot backups. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSnapshotBackup [-Id ] [-Name ] [-JobId ] [] ``` ## Detailed Description This cmdlet returns InterSystems IRIS snapshot backups created by application backup policies. Use the returned object to get restore points with the [`Get-VBRSnapshotRestorePoint`](get-vbrsnapshotrestorepoint.md) cmdlet. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs of snapshot backups. The cmdlet will return snapshot backups with these IDs.

Guid[]

False

Named

False

JobId

Specifies an array of IDs of application backup policies. The cmdlet will return snapshot backups created by jobs with these IDs.

Guid[]

False

Named

False

Name

Specifies an array of names of snapshot backups. The cmdlet will return snapshot backups with these names.

String[]

False

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 an array of [`VBRSnapshotBackup`](vbrsnapshotbackup.md) objects that contain InterSystems IRIS snapshot backups. ## Examples ::: example ### Getting InterSystems IRIS Snapshot Backups by Name This example shows how to get an InterSystems IRIS snapshot backup by its name. ``` Get-VBRSnapshotBackup -Name "IRIS Backup Job" ``` Run the `Get-VBRSnapshotBackup` cmdlet. Specify the `Name` parameter value. ::: ## Related Commands [`Get-VBRSnapshotRestorePoint`](get-vbrsnapshotrestorepoint.md)