Get-CDSnapshot
From PowerGUI Wiki
Get database snapshot.
Contents |
Syntax
Get-CDSnapshot [-InputObject] <PSObject> [<CommonParameters>]
Detailed Description
Get database snapshot for ChangeDirector. Can be loaded from file or be taken from sql server database.
Related Commands
Parameters
| Name | Description | Required? | Pipeline Input | Default Value |
|---|---|---|---|---|
| InputObject | CDDatabase object with credentials or path to file with snapshot | true | true (ByValue) |
Examples
Example 1
$a = Get-CDDatabase hostname base1 Get-CDSnapshot $a
Returns Snapshot object
Example 2
Get-CDDatabase hostname base1 | Get-CDSnapshot
Create snapshot using pipeline
