--- title: "Get-VBRPluginBackupSession" description: "Returns sessions of application backup policies and backup jobs for standalone Veeam Plug-ins. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns sess" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrpluginbackupsession.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 > Veeam Plug-In Job Sessions > Get-VBRPluginBackupSession" dateModified: "2026-08-19" --- # Get-VBRPluginBackupSession ## Short Description Returns sessions of application backup policies and backup jobs for standalone 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 sessions of application backup policies and backup jobs for standalone Veeam Plug-ins. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of IDs. The cmdlet will return the sessions with these IDs.

Guid[]

False

Named

False

MaxResults

Specifies a number of returned sessions.

Default: 500 sessions.

Note: If the MaxResults parameter value is 0, the cmdlet will return all sessions.

Int32

False

Named

False

Name

Specifies the array of names. The cmdlet will return the sessions 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 [`VBRPluginBackupSession`](vbrpluginbackupsession.md) ## Examples ::: example ### Example 1. Getting all Sessions This command returns all sessions of application backup policies and backup jobs for standalone Veeam Plug-ins. ``` Get-VBRPluginBackupSession ``` ::: ::: example ### Example 2. Getting Sessions by Name This command returns the `Oracle RMAN backup` session. ``` Get-VBRPluginBackupSession -Name "Oracle RMAN backup" ``` ::: ::: example ### Example 3. Getting Sessions by ID This command returns the `483699a2-3fa2-45ed-86cb-230b9009b29d` session. ``` Get-VBRPluginBackupSession -Id "483699a2-3fa2-45ed-86cb-230b9009b29d" ``` :::