Sync-VBRBackupToTapeJob
Short Description
Starts an active full for a selected GFS backup to tape job.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides the following parameter sets:
-
WeeklySync-VBRBackupToTapeJob -Job <VBRBackupToTapeJob> [-Weekly] [-Wait] [<CommonParameters>]
-
MonthlySync-VBRBackupToTapeJob -Job <VBRBackupToTapeJob> [-Monthly] [-Wait] [<CommonParameters>]
-
QuarterlySync-VBRBackupToTapeJob -Job <VBRBackupToTapeJob> [-Quarterly] [-Wait] [<CommonParameters>]
-
YearlySync-VBRBackupToTapeJob -Job <VBRBackupToTapeJob> [-Yearly] [-Wait] [<CommonParameters>]
Detailed Description
This cmdlet starts an active full for a selected backup period of a GFS backup to tape job. The job must be targeted to a GFS media pool.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Job |
Specifies the backup to tape job for which you want to create an active full.
Accepts the |
True |
Named |
True (ByValue) |
|
|
Monthly |
Defines that the job will create a monthly full. |
|
True |
Named |
False |
|
Quarterly |
Defines that the job will create a quarterly full. |
|
True |
Named |
False |
|
Wait |
Defines that the command waits for the process to complete before accepting more input. |
|
False |
Named |
False |
|
Weekly |
Defines that the job will create a weekly full. |
|
True |
Named |
False |
|
Yearly |
Defines that the job will create a yearly full. |
|
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Starting Weekly Active Full Backup for GFS Backup to Tape Job
This example shows how to start an active weekly full backup for the WebApp Backup GFS job.
|
$job = Get-VBRTapeJob -Name "WebApp Backup" Sync-VBRBackupToTapeJob -Job $job -Weekly |
Perform the following steps:
- Run the
Get-VBRTapeJobReturns tape jobs. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Sync-VBRBackupToTapeJobcmdlet. Set the$jobvariable as theJobparameter value. Provide theWeeklyparameter.
Related Commands
Get-VBRTapeJobReturns tape jobs.