--- title: "New-VBRSyntheticFullOptions (obsolete)" description: "This cmdlet creates the VBRSyntheticFullOptions object. This object contains synthetic full backup schedule settings that you can apply to Veeam Agent backup jobs to create synthetic full backups periodically." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrsyntheticfulloptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > New-VBRSyntheticFullOptions (obsolete)" dateModified: "2026-08-19" --- # New-VBRSyntheticFullOptions ## Short Description Creates synthetic full backup schedule settings for Veeam Agent backup jobs. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRSyntheticFullOptions [-Enable] [-Days ] [] ``` ## Detailed Description This cmdlet creates the `VBRSyntheticFullOptions` object. This object contains synthetic full backup schedule settings that you can apply to Veeam Agent backup jobs to create synthetic full backups periodically. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Days

Specifies the days of the week when the Veeam Agent backup job will create synthetic full backups.

Default: Saturday.

DayOfWeek[]

False

Named

False

Enable

Enables the option for the Veeam Agent backup job to create synthetic full backups.

SwitchParameter

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 `VBRSyntheticFullOptions` object that contains schedule settings for backup jobs. ## Examples ::: example ### Creating Synthetic Full Backup Schedule for Veeam Agent Backup Job This command creates synthetic full backup schedule settings. With these settings applied, the Veeam Agent backup job will create synthetic full backups on Fridays. ``` New-VBRSyntheticFullOptions -Enable -Days Friday ``` :::