<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Find flexclone snapshot parent in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61469#M3070</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The cmdlet man pages list the output types, but AFAIK there isn't a simple programmatic reference for that info.&amp;nbsp; That might be a possible addition to Get-NaHelp and Get-NcHelp.&amp;nbsp; You could always parse the cmdlet MAML files yourself, which is what those two cmdlets do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2014 18:56:57 GMT</pubDate>
    <dc:creator>cknight</dc:creator>
    <dc:date>2014-03-07T18:56:57Z</dc:date>
    <item>
      <title>Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61439#M3063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have just starting using the PS toolkit and loving it, but we are struggling to query a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we create a flexclone we are able to present it and use it no problem. We then remove it when we are done with it no problem. However we can't seem to find how to remove the auto-created snapshot that was created when we created flexclone. We'd like to clean up after ourselves so we thought we could have queried for the parent snapshot of the flexclone, but not sure how to query that value - it's there in filerview, but just looking for syntax....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alistair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:59:18 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61439#M3063</guid>
      <dc:creator>alistairs2</dc:creator>
      <dc:date>2025-06-05T06:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61443#M3064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Alistair,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can query the name of the FlexClone backing snapshot using Get-NaVol.&amp;nbsp; For example, if the name of your clone is testvol_clone, you can issue the following commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $clone = Get-NaVol testvol_clone&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $snapshot = $clone.CloneParent.Get(0).ParentSnapshotName&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $snapshot&lt;/P&gt;&lt;P&gt;clone_testvol_clone.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can now see that the backing snapshot for testvol_clone is "clone_testvol_clone.1" and can proceed to offline the clone volume, destroy the clone volume, then delete the snapshot from the parent volume.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Steven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 14:47:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61443#M3064</guid>
      <dc:creator>beam</dc:creator>
      <dc:date>2011-02-25T14:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61448#M3065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there documentation on the .NET objects used e.g. what .NET object is returned by Get-NaVol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 13:13:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61448#M3065</guid>
      <dc:creator>darraghos</dc:creator>
      <dc:date>2014-03-07T13:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61453#M3066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use Get-Member.&amp;nbsp; The types the Toolkit returns should be stable over time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;PS C:\Software\Toolkit&amp;gt; Get-NaVol | Get-Member&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; TypeName: DataONTAP.Types.Volume.VolumeInfo&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 16:32:22 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61453#M3066</guid>
      <dc:creator>cknight</dc:creator>
      <dc:date>2014-03-07T16:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61456#M3067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Clinton, I should have been clearer. Yes, I am using that command currently but was wondering if there was any API ref that contained all the objects/types etc. The current ref just seems to have the cmdlets and the API names. basically, what I'm planning on doing is building a little cmdlet to display the tree of volumes and flexclones hanging off those volumes (I'm not aware of any tool that does that so it would be quite useful!) &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 16:41:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61456#M3067</guid>
      <dc:creator>darraghos</dc:creator>
      <dc:date>2014-03-07T16:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61461#M3068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You shouldn't need to write your own cmdlet.&amp;nbsp; You can use the API cmdlets to grab this info&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at get-navol and look at clonechildren property.&amp;nbsp; Should be all done for you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 16:54:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61461#M3068</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2014-03-07T16:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61464#M3069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but for my env. where we have developers with maybe 200+ flexclones, I want to create a cmdlet that does the following against a target aggregate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a html tree view of the aggregate and all volumes&lt;/LI&gt;&lt;LI&gt;Add to that tree link relationships between parents snapshots and flexclones&lt;/LI&gt;&lt;LI&gt;List all space metrics for all&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Particular to my environment but will save much hassle &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/5.0.1/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 16:59:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61464#M3069</guid>
      <dc:creator>darraghos</dc:creator>
      <dc:date>2014-03-07T16:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Find flexclone snapshot parent</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61469#M3070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The cmdlet man pages list the output types, but AFAIK there isn't a simple programmatic reference for that info.&amp;nbsp; That might be a possible addition to Get-NaHelp and Get-NcHelp.&amp;nbsp; You could always parse the cmdlet MAML files yourself, which is what those two cmdlets do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 18:56:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Find-flexclone-snapshot-parent/m-p/61469#M3070</guid>
      <dc:creator>cknight</dc:creator>
      <dc:date>2014-03-07T18:56:57Z</dc:date>
    </item>
  </channel>
</rss>

