--- title: "New-VBRComputerGFSYearlyOptions" description: "Defines settings of the yearly GFS retention policy for Veeam Agent backup jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet creates the VBRComputerGFSMonthlyOptions object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrcomputergfsyearlyoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Job Advanced Settings > New-VBRComputerGFSYearlyOptions" dateModified: "2026-08-19" --- # New-VBRComputerGFSYearlyOptions ## Short Description Defines settings of the yearly GFS retention policy for Veeam Agent backup jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRComputerGFSYearlyOptions [-RetentionPeriod ] [-SelectedMonth ] [] ``` ## Detailed Description This cmdlet creates the `VBRComputerGFSMonthlyOptions` object. This object contains settings of the yearly GFS retention policy that you can apply to Veeam Agent backup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RetentionPeriod

Specifies the number of years to keep yearly full backups.

Int32

False

Named

False

SelectedMonth

Specifies a month when a yearly backup is created. You can specify either of the following months:

  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August
  • September
  • October
  • November
  • December

VBRMonth

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 `VBRComputerGFSYearlyOptions` object that contains settings of the yearly GFS retention policy that you can apply to Veeam Agent backup jobs. ## Examples ::: example ### Defining Yearly GFS Retention Policy This command defines a yearly GFS retention policy with the following settings: - With these settings applied, Veeam Backup & Replication will keep yearly full backups for 2 years. - With these settings applied, Veeam Backup & Replication will create yearly backups on November. ``` New-VBRComputerGFSYearlyOptions -RetentionPeriod 2 -SelectedMonth November ``` :::