<?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 Adding parameter to New-NcClone in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127362#M5210</link>
    <description>&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We need to add "-is-backup true" parameter to new file clone create script due to a bug (they get Device Busy warning) but customer says they cannot make it. Below you can find the command that they run, how should I add "-is-backup true" parameter ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;New-NcClone -Volume /vol/BIAB_A/ -SourcePath ORACLEVM/OraDB01.STAGEA-Data01 -DestinationPath ORACLEVM/OraDB01.STAGEB-Data01&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;New-NcClone : Clone operation failed to start: Device busy&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 16:09:24 GMT</pubDate>
    <dc:creator>Murat</dc:creator>
    <dc:date>2025-06-04T16:09:24Z</dc:date>
    <item>
      <title>Adding parameter to New-NcClone</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127362#M5210</link>
      <description>&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We need to add "-is-backup true" parameter to new file clone create script due to a bug (they get Device Busy warning) but customer says they cannot make it. Below you can find the command that they run, how should I add "-is-backup true" parameter ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;New-NcClone -Volume /vol/BIAB_A/ -SourcePath ORACLEVM/OraDB01.STAGEA-Data01 -DestinationPath ORACLEVM/OraDB01.STAGEB-Data01&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;New-NcClone : Clone operation failed to start: Device busy&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 16:09:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127362#M5210</guid>
      <dc:creator>Murat</dc:creator>
      <dc:date>2025-06-04T16:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parameter to New-NcClone</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127384#M5214</link>
      <description>&lt;P&gt;Sorry for bothering guys. Looks like the problem is ONTAP version. They have 8.3 while this parameter comes with 8.3.2p2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 15:16:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127384#M5214</guid>
      <dc:creator>Murat</dc:creator>
      <dc:date>2017-01-26T15:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parameter to New-NcClone</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127484#M5220</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at the New-NcClone CmdLet help (Get-Help New-NcClone -full)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    -IsBackup [&amp;lt;Boolean&amp;gt;]
        Specifies whether the clone is being created for backup - that is source file will get periodically modified, 
        but the clone file should not be modified. The default value is false.&lt;/PRE&gt;&lt;P&gt;So you'd just need to add "-IsBackup $True" to the powershell command. EG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;New-NcClone -Volume $volume -SourcePath $sourcePath -DestinationPath $destinationPath -IsBackup $True&lt;/PRE&gt;&lt;P&gt;/Matt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 00:04:00 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127484#M5220</guid>
      <dc:creator>mbeattie</dc:creator>
      <dc:date>2017-01-30T00:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Adding parameter to New-NcClone</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127500#M5221</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the answer. They got parameter not found error for this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1/27/2017 12:26:12 PM | Info | 1120 | CloneLuns | Env:devops - Cloning /vol/BIAB_A/HYPERV/GoldenLiveB as /vol/BIAB_A/HYPERV/devops on Controller: DC2STRTD01_FC&lt;/P&gt;&lt;P&gt;1/27/2017 12:26:17 PM | Error | 3120 | CloneLuns | A parameter cannot be found that matches parameter name 'IsBackup'.&lt;/P&gt;&lt;P&gt;1/27/2017 12:26:17 PM | Error | 3120 | CloneLuns | Exception calling "CloneLuns" with "0" argument(s): "A parameter cannot be found that matches parameter name 'IsBackup'."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They have currently 8.3.2P5.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2017 10:27:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Adding-parameter-to-New-NcClone/m-p/127500#M5221</guid>
      <dc:creator>Murat</dc:creator>
      <dc:date>2017-01-30T10:27:41Z</dc:date>
    </item>
  </channel>
</rss>

