Set-VBRSureBackupLinkedJob
Short Description
Modifies settings of jobs linked with the SureBackup job.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRSureBackupLinkedJob -LinkedJob <VBRSureBackupLinkedJob> [-Job <CBackupJob>] [-Role <VBRSureBackupRole[]>] [-TestScript <VBRSureBackupTestScript[]>] [-StartupOptions <VBRSureBackupStartupOptions>] [-Credentials <CCredentials>] [-VM <VBRSureBackupVM[]>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of jobs linked with the SureBackup job.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Credentials |
Specifies credentials. The cmdlet will use these credentials to authenticate against the VM and to run a recovery verification script. |
|
False |
Named |
False |
|
Job |
Specify a backup or replication job. Veeam Backup & Replication will verify VMs from this job with the SureBackup job.
Accepts the |
|
False |
Named |
False |
|
LinkedJob |
Specify a job linked with the SureBackup job. Veeam Backup & Replication will modify settings of this linked job.
Accepts the |
|
True |
Named |
False |
|
Role |
Specifies a role that VM from the linked job performs. You can specify either of the following roles:
|
|
False |
Named |
False |
|
StartupOptions |
Specifies startup settings for VMs from the linked job.
Accepts the |
|
False |
Named |
False |
|
TestScript |
Specifies recovery verification scripts for VMs from the linked job.
Accepts the |
|
False |
Named |
False |
|
VM |
Specifies an array of VMs. The cmdlet will run a verification script on these VMs.
Accepts the |
|
False |
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 VBRSureBackupLinkedJob object that defines jobs linked with the SureBackup job.
Examples
Modifying Roles of VMs Added to Linked Job
This example shows how to assign the SQLServer role to VMs that are added to the Exchange Job linked job.
|
$job = Get-VBRJob -Name "Exchange Job" Set-VBRSureBackupLinkedJob -Job $job -Role SQLServer |
Perform the following steps:
- Run the
Get-VBRJobReturns existing jobs. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Set-VBRSureBackupLinkedJobcmdlet. Set the$jobvariable as theJobparameter value. Set theSQLServeroption for theRoleparameter.
Related Commands
Get-VBRJobReturns existing jobs.