This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRJobVssOptions

Short Description

Returns VSS settings for a selected job.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRJobVSSOptions [-Job] <CBackupJob[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

Detailed Description

This cmdlet returns VSS settings for a selected job.

Run Get-VBRJobObjectVssOptions to get the list of VSS options set for specific objects in a job.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Job

Specifies the job you want to get the VSS options of.

True

1

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This command looks for the list of VSS options of the job named "ActiveDirectory Backup". The job is obtained with Get-VBRJob and piped down.

Get-VBRJob -Name "ActiveDirectory Backup" | Get-VBRJobVSSOptions

Example 2

This command looks for the list of options of the job represented by the $ad_backup variable. The job is obtained with Get-VBRJobObject and assigned to the variable beforehand.

Get-VBRJobVSSOptions -Job $ad_backup

Related Commands

Get-VBRJob