--- title: "Set-VBRSyntheticFullOptions (obsolete)" description: "This cmdlet modifies the VBRSyntheticFullOptions object that contains synthetic full backup schedule settings that you can apply to Veeam Agent backup jobs. To modify settings, specify new values for the necessary parameters." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrsyntheticfulloptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Set-VBRSyntheticFullOptions (obsolete)" dateModified: "2026-08-19" --- # Set-VBRSyntheticFullOptions ## Short Description Modifies the synthetic full backup schedule settings for Veeam Agent backup jobs. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRSyntheticFullOptions -Options [-Enable] [-Days ] [] ``` ## Detailed Description This cmdlet modifies the `VBRSyntheticFullOptions` object that contains synthetic full backup schedule settings that you can apply to Veeam Agent backup jobs. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## 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.

DayOfWeek[]

False

Named

False

Enable

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

SwitchParameter

False

Named

False

Options

Specifies synthetic full backup settings that you want to modify.

Accepts the VBRSyntheticFullOptions object. To get this object, run the New-VBRSyntheticFullOptions cmdlet.

VBRSyntheticFullOptions

True

Named

True (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 This cmdlet returns the `VBRSyntheticFullOptions` object that contains schedule settings for backup jobs. ## Examples ::: example ### Modifying Synthetic Full Backup Schedule This example shows how to modify synthetic full backup schedule settings. With these settings applied, the Veeam Agent backup job will back up computers on Wednesdays and Fridays. ``` $job = Get-VBRComputerBackupJob -Name "BackupJob" $newoption = Set-VBRSyntheticFullOptions -Options $job.SyntheticFullOptions -Days Wednesday, Friday Set-VBRComputerBackupJob -Job $job -SyntheticFullOptions $newoption ``` Perform the following steps: 1. Run the [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Set-VBRSyntheticFullOptions` cmdlet. Get the `SyntheticFullOptions` property of the `$job` variable. Set the `Wednesday, Friday` option for the `Days` parameter. Save the result to the `$newoption` variable. 3. Run the [`Set-VBRComputerBackupJob`](set-vbrcomputerbackupjob.md) cmdlet. Set the `$job` variable as the `Job` parameter value. Set the `$newoption` variable as the `SyntheticFullOptions` parameter value. ::: ## Related Commands - [`Get-VBRComputerBackupJob`](get-vbrcomputerbackupjob.md) - [`New-VBRSyntheticFullOptions`](new-vbrsyntheticfulloptions.md)