
UNSOLVED
S
SteveBAdams
3 Posts
0
22114
October 3rd, 2013 12:00
Is New-SCVolume -SourceReplayIndex a valid option?
When one does the get-help new-scvolume –detailed I get:
-------------- Example 2 --------------
C:\PS>New-SCVolume -SourceReplayIndex 8195-655 -Name "Backup volume for SQL Data"
This command creates a new volume from the replay with the index of 8195-655 and names the volume "Backup volume
for SQL Data".
However the -SourceReplayIndex will not tab complete and does not appear to be valid.
Responses (1)
Solutions (0)

Justin Braun
7 Posts
410
0
Posted April 22nd, 2014 13:00
Hi Steve,
The parameter you want to use is -SourceSCReplay, which doesn't use the index, rather the source replay object. It would look something like this:
New-SCVolume -SourceSCReplay $(Get-SCReplay -Index $index) ....
Hope this helps,
Justin