Add-VBRStorageCopyJob
Short Description
Creates storage backup copy jobs.
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Add-VBRStorageCopyJob [-Name] <String> [-Description <String>] -SourceRepository <CBackupRepository[]>
-TargetRepository <CBackupRepository[]> [-EnableHealthCheck] [-KeepSecondaryCopies]
[-SecondaryCopiesRetentionPeriod <Int32>] [-NotificationOptions <VBRNotificationOptions>]
[-ScriptOptions <VBRJobScriptOptions>] [-BackupWindowOptions <VBRBackupWindowOptions>] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet creates storage backup copy jobs for HPE StoreOnce and Dell Data Domain repositories.
Parameters
Parameters
|
Parameter
|
Description
|
Type
|
Required
|
Position
|
Accept Pipeline Input
|
|
BackupWindowOptions
|
Specifies backup window settings for a job. The cmdlet will create the the backup copy job with these settings.
Accepts the VBRBackupWindowOptions object. To create this object, run the New-VBRBackupWindowOptionsDefines backup window settings for a job. cmdlet.
|
VBRBackupWindowOptions
|
False
|
Named
|
False
|
|
Description
|
Specifies a description of a backup copy job. The cmdlet will create the backup copy job with this description.
|
String
|
False
|
Named
|
False
|
|
EnableHealthCheck
|
Defines that the cmdlet will enable the Health check option.
|
SwitchParameter
|
False
|
Named
|
False
|
|
Force
|
Defines that the cmdlet will create backup copy jobs without showing warnings in the PowerShell console.
|
SwitchParameter
|
False
|
Named
|
False
|
|
KeepSecondaryCopies
|
Defines that the cmdlet will enable retention policy for the backup files in the target location.
|
SwitchParameter
|
False
|
Named
|
False
|
|
Name
|
Specifies a name of a storage backup copy job. The cmdlet will create the copy job with this name.
|
String
|
True
|
0
|
False
|
|
NotificationOptions
|
Specifies notification settings. The cmdlet will create the backup copy job with these settings.
Accepts the CBackupRepository object. To get this object, run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet.
|
VBRNotificationOptions
|
False
|
Named
|
False
|
|
ScriptOptions
|
Specifies job script options. The cmdlet will create a copy job with these script options.
Accepts the VBRJobScriptOptions object. To create this object, run the New-VBRJobScriptOptionsCreates new job script options. cmdlet.
|
VBRJobScriptOptions
|
False
|
Named
|
False
|
|
SecondaryCopiesRetentionPeriod
|
Specifies a number of days for which you want to store backup files in the target location.
|
Int32
|
False
|
Named
|
False
|
|
SourceRepository
|
Specifies an array of source repositories. The cmdlet will copy backup files from these repositories.
You can specify the following types of repositories:
-
HPE StoreOnce repositories.
-
Scale-Out Backup repository that consists of HPE StoreOnce or Dell Data Domain extents.
-
Dell Data Domain.
Note: The array of source repositories must contain the same number of the repositories as the array of the target repositories.
Accepts the string and the CBackupRepository[] object. To get this object, run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet.
|
CBackupRepository[]
|
True
|
Named
|
False
|
|
TargetRepository
|
Specifies an array of target repositories. The cmdlet will copy backup files to these repositories.
You can specify the following types of repositories:
-
HPE StoreOnce repositories.
-
Scale-Out Backup repository that consists of HPE StoreOnce or Dell Data Domain extents.
-
Dell Data Domain repositories.
Note: The array of target repositories must contain the same number of the repositories as the array of the source repositories.
Accepts the string and the CBackupRepository[] object. To get this object, run the Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet.
|
CBackupRepository[]
|
True
|
Named
|
False
|
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRStorageCopyJob object that contains settings of storage backup copy jobs.
Examples
Example 1. Creating Backup Copy Job for Specific HPE StoreOnce Repositories
|
This example shows how to create a backup copy job that will copy data from the source HPE StoreOnce 1 repository to the target HPE StoreOnce 2 repository.
|
$source = Get-VBRBackupRepository -Name "HPE StoreOnce 1"
$target = Get-VBRBackupRepository -Name "HPE StoreOnce 2"
Add-VBRStorageCopyJob -Name "StoreOnce copy job" -SourceRepository $source -TargetRepository $target -Description "Copy job for StoreOnce repository" |
Perform the following steps:
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save the result to the $source variable.
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save the result to the $target variable.
- Run the
Add-VBRStorageCopyJob cmdlet. Specify the following settings:
- Specify the
Name parameter value.
- Set the
$source variable as the SourceRepository parameter value.
- Set the
$target variable as the TargetRepository parameter value.
- Specify the
Description parameter value.
|
Example 2. Creating Backup Copy Job for List of HPE StoreOnce Repositories
|
This example shows how to create a backup copy job that will copy data from a list of source repositories to a list of the target repositories. Veeam Backup & Replication will copy data according to the following scheme:
- From
HPE StoreOnce 1 to HPE StoreOnce 4
- From
HPE StoreOnce 2 to HPE StoreOnce 5
- From
HPE StoreOnce 3 to HPE StoreOnce 6
|
$source = Get-VBRBackupRepository -Name "HPE StoreOnce 1", "HPE StoreOnce 2", "HPE StoreOnce 3"
$target = Get-VBRBackupRepository -Name "HPE StoreOnce 4", "HPE StoreOnce 5", "HPE StoreOnce 6"
Add-VBRStorageCopyJob -Name "StoreOnce copy job" -SourceRepository $source -TargetRepository $target -Description "Copy job for StoreOnce repository" |
Perform the following steps:
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value.
Save the result to the $source variable. The Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet will return an array of source HPE StoreOnce repositories.
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save the result to the $target variable.
The Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet will return an array of target HPE StoreOnce repositories.
- Run the
Add-VBRStorageCopyJob cmdlet. Specify the following settings:
- Specify the
Name parameter value.
- Set the
$source variable as the SourceRepository parameter value.
- Set the
$target variable as the TargetRepository parameter value.
- Specify the
Description parameter value.
|
Example 3. Creating Backup Copy Job for HPE StoreOnce Repository with Backup Window Options
|
This example shows how to create a backup copy job for an HPE StoreOnce repository. The job will run during the following period of time:
- From 22:00 to 22:59 on Friday
- From 22:00 to 22:59 on Saturday
|
$source = Get-VBRBackupRepository -Name "HPE SO 05"
$target = Get-VBRBackupRepository -Name "HPE SO 07"
$windowoptions = New-VBRBackupWindowOptions -FromDay Friday -FromHour 22 -ToDay Saturday -ToHour 22 -Enabled
Add-VBRStorageCopyJob -Name "StoreOnce copy job" -SourceRepository $source -TargetRepository $target -Description "Copy job for StoreOnce repository" -BackupWindowOptions $windowoptions |
Perform the following steps:
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save the result to the $source variable.
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify the Name parameter value. Save the result to the $target variable.
- Run the
New-VBRBackupWindowOptionsDefines backup window settings for a job. cmdlet. Specify the necessary parameters. Save the result to the $windowoptions variable.
- Run the
Add-VBRStorageCopyJob cmdlet. Specify the following settings:
- Specify the
Name parameter value.
- Set the
$source variable as the SourceRepository parameter value.
- Set the
$target variable as the TargetRepository parameter value.
- Specify the
Description parameter value.
- Set the
$windowoptions variable as the BackupWindowOptions parameter value.
|
Related Commands