Get-RMBackup
From PowerGUI Wiki
Gets backups registered with Recovery Manager.
Contents |
Syntax
Get-RMBackup [-Domain <String>] [<CommonParameters>]
Detailed Description
Retrieves the backup object for the backups registered in the Recovery Manager backup registration database.
Related Commands
Parameters
| Name | Description | Required? | Pipeline Input | Default Value |
|---|---|---|---|---|
| Domain | Retrieves the backup objects for the specified domain only. If this parameter is not specified, all backup objects are retrieved from the Recovery Manager backup registration database. | false | true (ByPropertyName) |
Examples
Example
Get-RMBackup | Where-Object {$_.ComputerName –eq "dc1.dom1.local"}
This command retrieves all backup objects for the dc1.dom1.local computer and passes them to the Where-Object cmdlet. The Where-Object cmdlet outputs the backup objects whose ComputerName property value is dc1.dom1.local.
