Microsoft Virtualization Discussions

busy vclones

anisha05
2,385 Views
Script to find busy vclones.
output to list - vfiler,volume,controller, and dependencies.
1 REPLY 1

asulliva
2,267 Views

It would be helpful if you describe what you're looking for in more detail.  I think this may do what you want:

 

Get-NcVol | ?{ $_.VolumeStateAttributes.IsNodeRoot -eq $false } | Get-NcSnapshot | ?{ $_.Dependency -like "*vclone*" }

 

Andrew

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