--- title: "Get-VBREPSession" description: "Returns sessions of backup jobs run by Veeam Agent operating in a standalone mode. This cmdlet provides the following parameter sets: This cmdlet returns sessions of backup jobs run by Veeam Agent operating in a standalone mode." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrepsession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Veeam Agent Standalone Mode > Get-VBREPSession" dateModified: "2026-08-19" --- # Get-VBREPSession ## Short Description Returns sessions of backup jobs run by Veeam Agent operating in a standalone mode. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns sessions of backup jobs run by Veeam Agent operating in a standalone mode. You can get all jobs sessions or search for instances directly by name. Use an appropriate parameter set for each case. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of job names. The cmdlet will return jobs with these names.

String[]

False

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 [`VBRSession`](vbrsession.md)`[]` ## Examples ::: example ### Example 1. Getting All Sessions of Backup Jobs Run by Veeam Agent in Standalone Mode This command returns all sessions of backup jobs run by Veeam Agent operating in a standalone mode. ``` Get-VBREPSession ``` ::: ::: example ### Example 2. Getting Specific Session of Backup Job Run by Veeam Agent in Standalone Mode This command gets a specific session of a backup job run by Veeam Agent operating in a standalone mode. ``` Get-VBREPSession -Name "Backup Job Mediaserver" ``` :::