Microsoft Virtualization Discussions
Microsoft Virtualization Discussions
Hi
Can someone help me to list only those volumes participating in snapmirror using PSTK.
Thanks
SCM
Hello SCM,
I think using the "Get-NcSnapmirror" and "Get-NcSnapmirrorDestination" cmdlets will return the information you are looking for.
Hope that helps.
Andrew
^^
The assumption is that this pertains to cDOT only.
Please confirm
Yes, sort of. The 7-mode cmdlets for SnapMirror are the same, just change "Get-Nc..." to "Get-Na...".
Andrew
Actually I was thinking about this.. Just want a list of voluems in a snapmirror
So you can easily do this in 7-mode by this
get-navol | ? {$_.raidstatus -match "read-only"}
In cDOT,
There are two ways to do this..
$v = get-ncvol -template
initialize-ncobjectproperty $v VolumeMirrorAttributes
$v.VolumeMirrorAttributes.IsDataProtectionMirror = $true
get-ncvol -query $v | Select Name,Vserver | ft -autosize
or
PS C:\powershell> $vols |% {
>> if (($_.VolumeMirrorAttributes).isDataProtectionMirror) {write-host $_.name}
>> }
>>