Set-VBRLinuxSelectedVolume
Short Description
Modifies the scope of volumes for Veeam Agent backup jobs that back up Linux machines.
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRLinuxSelectedVolume -SelectedVolume <VBRLinuxSelectedVolume> [-Type <VBRLinuxSelectedVolumeType>] [-Path <String>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies the VBRLinuxSelectedVolume object that specifies the scope of volumes for Veeam Agent Backup jobs that back up Linux machines.
Note |
|
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Path |
Specifies the path to the volume that you want to include in the backup scope. |
|
False |
Named |
False |
|
SelectedVolume |
Specifies the volumes that you want to modify.
Accepts the |
|
True |
Named |
True (ByValue) |
|
Type |
Specifies the type of the volume that you want to back up. You can select the following type of volumes:
|
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
This cmdlet returns the VBRLinuxSelectedVolume object that contains the scope of volumes for Agent Backup jobs that back up Linux machines.
Examples
Modifying Backup Scope for Linux Machines
This example shows how to modify the backup scope for Linux machines. Veeam Agent Backup jobs will back up the second hard disk instead of the first hard disk.
|
$volumes = New-VBRLinuxSelectedVolume -Type Device -Path "/dev/sda" Set-VBRLinuxSelectedVolume -SelectedVolume $volumes -Type Device -Path "/dev/sdb" |
Perform the following steps:
- Run the
New-VBRLinuxSelectedVolumeDefines the scope of volumes for Veeam Agent backup jobs that back up Linux machines. cmdlet. Set theDeviceoption for theTypeparameter. Specify thePathparameter value. Save the result to the$volumesvariable. - Run the
Set-VBRLinuxSelectedVolumecmdlet. Specify the following settings:- Set the
$volumesvariable as theSelectedVolumeparameter value. - Set the
Deviceoption for theTypeparameter. - Specify the
Pathparameter value.
- Set the
Related Commands
New-VBRLinuxSelectedVolumeDefines the scope of volumes for Veeam Agent backup jobs that back up Linux machines.