<?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: manual v. powershell flexclones in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28978#M1319</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We tested it against a different database, using the same script but changing names, and all is well.&amp;nbsp; Although I was not getting any errors last night, I am going to re-visit after hours and try to determine if it did not apply the correct snapshot or if there is anything else I may have missed.&amp;nbsp; Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Oct 2010 15:14:19 GMT</pubDate>
    <dc:creator>darobbins</dc:creator>
    <dc:date>2010-10-20T15:14:19Z</dc:date>
    <item>
      <title>manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28954#M1315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Getting an issue where flexclones, based on a snapshot, that are manually created are functioning properly however when I use the Powershell modules, it creates the flexclone, brings LUNs online, and maps LUNs to igroup, but system is unable to read LUNs.&amp;nbsp; Any suggestions? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 07:06:54 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28954#M1315</guid>
      <dc:creator>darobbins</dc:creator>
      <dc:date>2025-06-05T07:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28959#M1316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;POSH code?&amp;nbsp; What is the error you get when you try to read the LUN from the OS?&amp;nbsp; I assume this is Windows?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 11:41:14 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28959#M1316</guid>
      <dc:creator>erick_moore</dc:creator>
      <dc:date>2010-10-20T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28964#M1317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for responding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my 'sanitized' code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;connect-nacontroller CONTROLLER&lt;/P&gt;&lt;P&gt;$arrSnapList = @()&lt;/P&gt;&lt;P&gt;$colsnapshots = get-nasnapshot -name VOLUME&lt;/P&gt;&lt;P&gt;foreach ($objsnapshot in $colsnapshots) {$arrSnapList += $objsnapshot.name}&lt;/P&gt;&lt;P&gt;$snapid = $arrSnapList[0].split(".")&lt;BR /&gt;#write-host $snapid[1]&lt;/P&gt;&lt;P&gt;$strParentSnapshot = "CONTROLLER(1234567890)_VOLUME." + $snapid[1]&lt;BR /&gt;#write-host $strParentSnapshot&lt;/P&gt;&lt;P&gt;New-NAVolClone -ParentVolume VOLUME -CloneVolume clone_VOLUME -SpaceReserve none -ParentSnapshot $strParentSnapshot&lt;/P&gt;&lt;P&gt;Add-NALUNMap -Path /vol/clone_VOLUME/LUN -InitiatorGroup IGROUP -ID 13 | Set-NALun -Online&lt;BR /&gt;Add-NALUNMap -Path /vol/clone_VOLUME/LUN -InitiatorGroup IGROUP -ID 14 | Set-NALun -Online&lt;BR /&gt;Add-NALUNMap -Path /vol/clone_VOLUME/LUN -InitiatorGroup IGROUP -ID 15 | Set-NALun -Online&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Add-NALUNMap -Path /vol/clone_VOLUME/LUN -InitiatorGroup IGROUP -ID 16 | Set-NALun -Online&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does actually create the flexclone, maps, and onlines the LUNs.&amp;nbsp; The LUNs are just not 'readable', and no unfortunately this happens to be a Sybase raw device running on AIX.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 14:16:33 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28964#M1317</guid>
      <dc:creator>darobbins</dc:creator>
      <dc:date>2010-10-20T14:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28969#M1318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code!&amp;nbsp; Well, you lost me at the AIX part :-).&amp;nbsp; I am not sure what has to happen on an AIX system once you present new LUNs.&amp;nbsp; I assume you do some sort of SCSI bus scan so the system knows about the new devices?&amp;nbsp; Assuming that is the case when you try to mount the LUN what happens?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 14:30:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28969#M1318</guid>
      <dc:creator>erick_moore</dc:creator>
      <dc:date>2010-10-20T14:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28978#M1319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We tested it against a different database, using the same script but changing names, and all is well.&amp;nbsp; Although I was not getting any errors last night, I am going to re-visit after hours and try to determine if it did not apply the correct snapshot or if there is anything else I may have missed.&amp;nbsp; Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 15:14:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28978#M1319</guid>
      <dc:creator>darobbins</dc:creator>
      <dc:date>2010-10-20T15:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: manual v. powershell flexclones</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28982#M1320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well its in working for 'bout a week, thanks for at least using a synapse on it, hopefully I don't have issues with snapshots in general...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_macro_emoticon" src="https://community.netapp.com/4.0.8/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 17:55:20 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/manual-v-powershell-flexclones/m-p/28982#M1320</guid>
      <dc:creator>darobbins</dc:creator>
      <dc:date>2010-10-28T17:55:20Z</dc:date>
    </item>
  </channel>
</rss>

