New-VBRTapeGFSScheduleOptions
Short Description
Creates new GFS schedule settings.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRTapeGFSScheduleOptions [-WeeklyDay <DayOfWeek>] [-DailyStartAt <TimeSpan>] [-MonthlyKind <VBRGFSMonthlyKind>] [-MonthlyDayOfWeek <DayOfWeek>] [-MonthlyDayOfWeekNumber <VBRDayNumberInMonth>] [-MonthlyDayOfMonth <String>] [-QuarterlyKind <VBRGFSQuarterlyKind>] [-QuarterlyDayOfWeekNumber <VBRDayNumberInMonth>] [-QuarterlyDayOfWeek <DayOfWeek>] [-QuarterlyDayOfMonth <String>] [-QuarterlyMonthOfQuarter <VBRGFSMonthOfQuarter>] [-YearlyKind <VBRGFSYearlyKind>] [-YearlyDayOfWeekNumber <VBRDayNumberInMonth>] [-YearlyDayOfWeek <DayOfWeek>] [-YearlyDayOfMonth <String>] [-MonthOfYear <VBRMonth>] [<CommonParameters>] |
Detailed Description
This cmdlet creates a new VBRTapeGFSScheduleOptions object. This object contains GFS schedule and is used to apply the schedule to a tape job.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
DailyStartAt |
For daily backup. Specifies the time of the day when the daily backup is archived. |
|
False |
Named |
False |
|
MonthlyDayOfMonth |
For monthly backup.
Specifies the day in month for the |
|
False |
Named |
False |
|
MonthlyDayOfWeek |
For monthly backup.
Specifies the day of week for the |
|
False |
Named |
False |
|
MonthlyDayOfWeekNumber |
For monthly backup. Specifies the number of day in month (for example, Saturday):
|
|
False |
Named |
False |
|
MonthlyKind |
For monthly backup. Specifies the type of monthly schedule:
|
|
False |
Named |
False |
|
MonthOfYear |
For yearly backup.
Specifies the month for the |
|
False |
Named |
False |
|
QuarterlyDayOfMonth |
For quarterly backup.
Specifies the day of month for the |
|
False |
Named |
False |
|
QuarterlyDayOfWeek |
For quarterly backup.
Specifies the day of week for the |
|
False |
Named |
False |
|
QuarterlyDayOfWeekNumber |
For quarterly backup.
Specifies the number of the selected day, for example, "the first" (Sunday) for the |
|
False |
Named |
False |
|
QuarterlyKind |
For quarterly backup. Specifies the type of quarterly schedule:
|
|
False |
Named |
False |
|
QuarterlyMonthOfQuarter |
For quarterly backup.
Specifies the number of month in quarter for the |
|
False |
Named |
False |
|
WeeklyDay |
For weekly backup. Specifies the day of week when the weekly backup is archived. |
|
False |
Named |
False |
|
YearlyDayOfMonth |
For yearly backup.
Specifies the day of month for the |
|
False |
Named |
False |
|
YearlyDayOfWeek |
For yearly backup.
Specifies the day of week for the |
|
False |
Named |
False |
|
YearlyDayOfWeekNumber |
For yearly backup.
Specifies the number of the selected day, for example, "the first" (Sunday) for the |
|
False |
Named |
False |
|
YearlyKind |
For yearly backup. Specifies the type of yearly schedule:
|
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Creating GFS Backup to Tape Schedule
This command creates a new GFS schedule with the following settings:
- Weekly backup: Tuesday 18:00:00
- Monthly backup: First Sunday of the month (default)
- Quarterly backup: First Sunday of the quarter (default)
- Yearly backup: First Sunday of the year (default)
- Daily backup: 0:00:00 (default)
|
$sch = New-VBRTapeGFSScheduleOptions -WeeklyDay Tuesday -WeeklyStartAt 18:00 |