Get-VBRComputerDiskPartition
Short Description
Returns volumes of computers backed-up with Veeam Agent for Microsoft Windows.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides parameter sets that allow you to:
- Get all volumes of computers backed-up with Veeam Agent for Microsoft Windows.
Get-VBRComputerDiskPartition -RestorePoint <COib> [<CommonParameters>] |
- Get specific volumes of computers backed-up with Veeam Agent for Microsoft Windows.
Get-VBRComputerDiskPartition -RestorePoint <COib> -Disk <VBRComputerDisk[]> [<CommonParameters>] |
Detailed Description
This cmdlet returns volumes of computers backed-up with Veeam Agent for Microsoft Windows.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
RestorePoint | Specifies a restore point of computers. The cmdlet will return details on backed-up volumes of these computers. | Accepts the COib object. To get this object, run the Get-VBRRestorePoint cmdlet. | True | Named | True (ByValue, ByPropertyName) |
Disk | Specifies computer disks. The cmdlet will return details on these disks. | Accepts the VBRComputerDisk[] object. To create this object, run the Get-VBRComputerDisk cmdlet. | True | Named | True (ByValue, ByPropertyName) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRComputerDiskPartition object that contains volumes of computers backed-up with Veeam Agent for Microsoft Windows.
Examples
Example 1. Getting all Volumes of Computers Backed-Up with Veeam Agent for Microsoft Windows
This example shows how get all volumes of the WinLaptop2017 computer backed-up with Veeam Agent for Microsoft Windows.
Perform the following steps:
Note: To get a list of restore points for a Veeam Agent job, you must provide the asterisks sign for the Name parameter value: Name "AgentJob*". Otherwise, the Get-VBRRestorePoint cmdlet will not return any restore points for the Veeam Agent job.
The Get-VBRRestorePoint cmdlet will return an array of restore points. Mind the ordinal number of the necessary restore point (in our example, it is the fourth restore point in the array).
|
Example 2. Getting Specific Volumes of Computers Backed-Up with Veeam Agent for Microsoft Windows
This example shows how to get specific volumes of the WinLaptop2017 computer backed-up with Veeam Agent for Microsoft Windows.
Perform the following steps:
Note: To get a list of restore points for a Veeam Agent job, you must provide the asterisks sign for the Name parameter value: Name "AgentJob*". Otherwise, the Get-VBRRestorePoint will not return any restore points for the Veeam Agent job.
The Get-VBRRestorePoint cmdlet will return an array of restore points. Mind the ordinal number of the necessary restore point (in our example, it is the fourth restore point in the array).
The Get-VBRComputerDisk cmdlet will return an array of volumes. Mind the ordinal number of the necessary volumes (in our example, it is the third volume in the array).
|
Related Commands