--- title: "Get-VBRApplicationBackupJobSession" description: "This cmdlet returns job sessions of application backup policies that are managed by Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrapplicationbackupjobsession.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 Policies > Get-VBRApplicationBackupJobSession" dateModified: "2026-08-19" --- # Get-VBRApplicationBackupJobSession ## Short Description Returns job sessions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns job sessions of application backup policies that are managed by Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for application policy sessions. The cmdlet will return the sessions with these IDs.

Guid[]

False

Named

False

Name

Specifies an array of names for application policy sessions. The cmdlet will return 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 This cmdlet returns the `VBRSession` object that contains settings of sessions that are running by application backup policies. ## Examples ::: example ### Example 1. Getting Application Policy Sessions by Name This command returns the `Database backup policy` application policy session. ``` Get-VBRApplicationBackupJobSession -Name "Database backup policy" ``` ::: ::: example ### Example 2. Getting Application Policy Sessions by ID This command returns the `1137c678-e79d-48c4-8d30-b921a612ba1e` application policy session. ``` Get-VBRApplicationBackupJobSession -Id 1137c678-e79d-48c4-8d30-b921a612ba1e ``` :::