--- title: "New-VBRFullBackupToTapePolicy" description: "Creates schedule settings for creating virtual synthesized full backup for tape. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet creates the VBRFullBackupToTapePolicy object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrfullbackuptotapepolicy.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Jobs > New-VBRFullBackupToTapePolicy" dateModified: "2026-08-19" --- # New-VBRFullBackupToTapePolicy ## Short Description Creates schedule settings for creating virtual synthesized full backup for tape. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRFullBackupToTapePolicy [-Type ] [-MonthlyOptions ] [-WeeklyOnDays ] [] ``` ## Detailed Description This cmdlet creates the [`VBRFullBackupToTapePolicy`](vbrfullbackuptotapepolicy.md) object. This object contains schedule settings for creating virtual synthesized full backup for tape and is used further to apply these settings to an existing backup to tape job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

MonthlyOptions

Used to set months for the Type parameter (Monthly option).

Default:

  • Period: 22:00
  • DayNumberInMonth: Fourth
  • DayOfWeek: Saturday
  • Months: January, February, March, April, May, June, July, August, September, October, November, December.

Accepts the VBRMonthlyOptions object. To create this object, run the New-VBRMonthlyOptions cmdlet.

VBRMonthlyOptions

False

Named

False

Type

Specifies the virtual synthesized full backup creation type:

  • Monthly: the virtual synthesized full backup is created on selected months. Use the MonthlyOptions parameter to set the months.
  • WeeklyOnDays: the virtual synthesized full backup is created on selected days of week. Use the WeeklyOnDays parameter to set the days.

Default: WeeklyOnDays.

VBRFullBackupToTapePolicyType

False

Named

False

WeeklyOnDays

Used to set days of week for the Type parameter (WeeklyOnDays option).

DayOfWeek[]

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 [`VBRFullBackupToTapePolicy`](vbrfullbackuptotapepolicy.md) ## Examples ::: example ### Creating Schedule Settings for Weekly Virtual Full Backup This example shows how to create schedule settings for weekly virtual full backup scheduled to run on Saturdays. ``` New-VBRFullBackupToTapePolicy -Type WeeklyOnDays -WeeklyOnDays Saturday ``` ::: ## Related Commands [`New-VBRMonthlyOptions`](new-vbrmonthlyoptions.md)