<?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: Data migration using ndmpcopy from cdot to cdot in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/121268#M4924</link>
    <description>&lt;P&gt;Hello Shailen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get this working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to get it working from cDOT to cDOT, and stumbled across this post (was getting the same error as you). I think you're just missing a backslash after the volume name, so the below should work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Invoke-NaNdmpCopy x.x.x.x /vserver/source_volume_name/ x.x.x.x /vserver/distination_volume_name/ -SrcCredential $srccred -SrcAuthType md5 -DstCredential $dstcred -DstAuthType md5 -level 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've definately had this working against my 8.3.2 SIMs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;VC&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2016 21:33:30 GMT</pubDate>
    <dc:creator>vCosonok</dc:creator>
    <dc:date>2016-07-13T21:33:30Z</dc:date>
    <item>
      <title>Data migration using ndmpcopy from cdot to cdot</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/117383#M4799</link>
      <description>&lt;P&gt;&lt;FONT size="5"&gt;I am trying make a powershell script to&amp;nbsp;move data from QC to Production &amp;nbsp;using powershell and Invoke-NaNdmpCopy utility.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;My environment is &amp;nbsp;Fas8040&amp;nbsp;NetApp Release 8.3: Mon Mar 09 23:01:28 PDT 2015&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;&amp;nbsp;In my script I have the following steps &amp;nbsp;and I am using the KB ID 1013825&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Import-Module DataOnTap&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;#========================================================&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;$user = "admin"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;$password = ConvertTo-SecureString "xxxxxxxxxxxx" -AsPlainText -Force&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $user,$password&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;$filer = "cluster1"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;$C = connect-nccontroller $filer -https -credential $cred&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;$srccred = new-object -typename System.Management.Automation.PSCredential -argumentlist "ndmpuser", (ConvertTo-SecureString "xxxxxxxxxxxx" -AsPlainText -Force)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;$dstcred = new-object -typename System.Management.Automation.PSCredential -argumentlist "ndmpuser", (ConvertTo-SecureString "xxxxxxxxxxxx" -AsPlainText -Force)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="4"&gt;Invoke-NaNdmpCopy x.x.x.x /vserver/source_volume_name x.x.x.x /vserver/distination_volume_name -SrcCredential $srccred -SrcAuthType md5 -DstCredential $dstcred -DstAuthType md5 -level 0&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;I get the following error&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;I&lt;FONT size="3"&gt;nvoke-NaNdmpCopy : Exception from ndmp message DATA_START_RECOVER: An error occured: ILLEGAL_ARGS_ERR.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;At line:1 char:1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;+ Invoke-NaNdmpCopy x.x.x.x /vserver/source_volume_name x.x.x.x /igskbthif ...&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;+ CategoryInfo : InvalidOperation: (:) [Invoke-NaNdmpCopy], NdmpMessageException&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;+ FullyQualifiedErrorId : NDMP error,DataONTAP.PowerShell.SDK.Cmdlets.Ndmp.InvokeNaNdmpCopy&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 21:42:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/117383#M4799</guid>
      <dc:creator>Shailen_singh</dc:creator>
      <dc:date>2025-06-04T21:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data migration using ndmpcopy from cdot to cdot</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/117413#M4800</link>
      <description>The cmdlet you are using is 7-mode. Each cdot cmdlet contains Nc instead of Na.</description>
      <pubDate>Wed, 23 Mar 2016 12:44:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/117413#M4800</guid>
      <dc:creator>mcgue</dc:creator>
      <dc:date>2016-03-23T12:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Data migration using ndmpcopy from cdot to cdot</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/121268#M4924</link>
      <description>&lt;P&gt;Hello Shailen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get this working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to get it working from cDOT to cDOT, and stumbled across this post (was getting the same error as you). I think you're just missing a backslash after the volume name, so the below should work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Invoke-NaNdmpCopy x.x.x.x /vserver/source_volume_name/ x.x.x.x /vserver/distination_volume_name/ -SrcCredential $srccred -SrcAuthType md5 -DstCredential $dstcred -DstAuthType md5 -level 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've definately had this working against my 8.3.2 SIMs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;VC&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 21:33:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Data-migration-using-ndmpcopy-from-cdot-to-cdot/m-p/121268#M4924</guid>
      <dc:creator>vCosonok</dc:creator>
      <dc:date>2016-07-13T21:33:30Z</dc:date>
    </item>
  </channel>
</rss>

