--- title: "Get-VBRPluginRestoreSession" description: "This cmdlet returns active restore sessions for standalone and managed Veeam Plug-ins." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrpluginrestoresession_standalone.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Standalone Veeam Plug-Ins > Veeam Plug-In Job Sessions > Get-VBRPluginRestoreSession" dateModified: "2026-08-19" --- # Get-VBRPluginRestoreSession ## Short Description Returns active restore sessions for standalone and managed Veeam Plug-ins. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns active restore sessions for standalone and managed Veeam Plug-ins. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of restore sessions for standalone and managed Veeam Plug-ins. The cmdlet will return the sessions with these IDs.

Guid[]

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 [`VBRPluginRestoreSession`](vbrpluginrestoresession.md) ## Examples ::: example ### Example 1. Getting all Active Restore Sessions This command returns all active restore sessions for standalone and managed Veeam Plug-ins. ``` Get-VBRPluginRestoreSession ``` ::: ::: example ### Example 2. Getting Active Restore Sessions by ID This command returns the `ebea2113-dacb-4f5f-ac2a-18794fb6d4aa` session. ``` Get-VBRPluginRestoreSession -Id ebea2113-dacb-4f5f-ac2a-18794fb6d4aa ``` :::