Microsoft Virtualization Discussions

Need to list all volumes participating in snapmirror using PSTK

netappwala
3,385 Views

Hi

 

Can someone help me to list only those volumes participating in snapmirror using PSTK.

 

 

Thanks

SCM

4 REPLIES 4

asulliva
3,363 Views

Hello SCM,

 

I think using the "Get-NcSnapmirror" and "Get-NcSnapmirrorDestination" cmdlets will return the information you are looking for.

 

Hope that helps.

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

JGPSHNTAP
3,308 Views

^^

 

The assumption is that this pertains to cDOT only.

 

Please confirm

asulliva
3,300 Views

Yes, sort of.  The 7-mode cmdlets for SnapMirror are the same, just change "Get-Nc..." to "Get-Na...".

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

JGPSHNTAP
3,278 Views

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}
>> }
>>

 

 

 

Public