<?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: Problem with powershell New-SmClone and AssignMountPointUnderPath in Data Protection</title>
    <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440857#M13767</link>
    <description>&lt;P&gt;Yes,&amp;nbsp;unfortunately it gives the same error message.&lt;/P&gt;&lt;P&gt;I have tried:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\MountPoint\CloneMount\'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\MountPoint\CloneMount'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\\MountPoint\\CloneMount\\'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\\MountPoint\\CloneMount'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\MountPoint\CloneMount\"&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\MountPoint\CloneMount"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\\MountPoint\\CloneMount\\"&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\\MountPoint\\CloneMount"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\MountPoint\CloneMount\&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\MountPoint\CloneMount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\\MountPoint\\CloneMount\\&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\\MountPoint\\CloneMount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And now you got me to try with "/" instead of "\",&amp;nbsp;which I hadn't thought of, but it gives the same message: New-SmClone : Input string was not in a correct format.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But as i said, "funny" thing is, that if i use a path that not exists like&amp;nbsp;'c:\MountPoint\Foo\', it gives me: New-SmClone : Invalid mount path: Path does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jan 2023 06:13:28 GMT</pubDate>
    <dc:creator>Rohnitz</dc:creator>
    <dc:date>2023-01-10T06:13:28Z</dc:date>
    <item>
      <title>Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440841#M13764</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to clone a backup of some SQL-Server databases to another server and everything works great when i let SnapCenter controle the mountpoint with&amp;nbsp;AutoAssignMountPoint.&lt;/P&gt;&lt;P&gt;Full command:&lt;/P&gt;&lt;P&gt;New-SmClone -BackupName "SQL01_USRDB1_SQL01_01-08-2023_19.30.04.9781" -Resources @{"Host"="SQL01.domain.com";"Type"="SQL Database";"Names"="SQL01\TestDatabase,SQL01\Provar,SQL01\EfterPolicy"} -CloneToInstance "SQL02" -AutoAssignMountPoint -Suffix "_PS-Clone" -LogRestoreType None -AppPluginCode "SMSQL"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i want to controle the mountpoint, so i try to use&amp;nbsp;AssignMountPointUnderPath, but i can not get it to work.&lt;/P&gt;&lt;P&gt;Full command:&lt;/P&gt;&lt;P&gt;New-SmClone -BackupName "SQL01_USERDB01_SQL01_01-08-2023_19.30.04.9781" -Resources @{"Host"="SQL01.domain.com";"Type"="SQL Database";"Names"="SQL01\TestDatabase,SQL01\Provar,SQL01\EfterPolicy"} -CloneToInstance "SQL02" -AssignMountPointUnderPath 'c:\MountPoint\CloneMount\' -Suffix "_PS-Clone" -LogRestoreType None -AppPluginCode "SMSQL"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error i get is:&amp;nbsp;&amp;nbsp;New-SmClone : Input string was not in a correct format.&lt;/P&gt;&lt;P&gt;I have tried all variations on the path i can come up with (single quote, double quote, without quote, with double backslaches, with and without backslash on the end) but all of them give the same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i use a path that does not exist, it gives another error:&amp;nbsp;&amp;nbsp;New-SmClone : Invalid mount path: Path does not exist&lt;/P&gt;&lt;P&gt;Wich is logical... And indicates that it is using the string and the overall command is ok.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i look in the command reference guide,&amp;nbsp;&lt;A href="https://library.netapp.com/ecm/ecm_download_file/ECMLP2880726" target="_blank"&gt;https://library.netapp.com/ecm/ecm_download_file/ECMLP2880726&lt;/A&gt;&lt;/P&gt;&lt;P&gt;in the example in the beginning they use both&amp;nbsp;AutoAssignMountPoint and&amp;nbsp;AssignMountPointUnderPath.&lt;/P&gt;&lt;P&gt;If i try that i get another error:&amp;nbsp;&amp;nbsp;New-SmClone : Please provide only one option from AutoAssignMountPoint and AssignMountPointUnderPath.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So now i am stuck. My hope is that someone out there have a solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use SnapCenter 4.6 and the powershell version on the server is 5.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&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 09:54:11 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440841#M13764</guid>
      <dc:creator>Rohnitz</dc:creator>
      <dc:date>2025-06-04T09:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440856#M13766</link>
      <description>&lt;P&gt;What happens if you remove the trailing "/" in the path?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 04:39:37 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440856#M13766</guid>
      <dc:creator>aladd</dc:creator>
      <dc:date>2023-01-10T04:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440857#M13767</link>
      <description>&lt;P&gt;Yes,&amp;nbsp;unfortunately it gives the same error message.&lt;/P&gt;&lt;P&gt;I have tried:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\MountPoint\CloneMount\'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\MountPoint\CloneMount'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\\MountPoint\\CloneMount\\'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'c:\\MountPoint\\CloneMount'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\MountPoint\CloneMount\"&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\MountPoint\CloneMount"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\\MountPoint\\CloneMount\\"&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"c:\\MountPoint\\CloneMount"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\MountPoint\CloneMount\&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\MountPoint\CloneMount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\\MountPoint\\CloneMount\\&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;c:\\MountPoint\\CloneMount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And now you got me to try with "/" instead of "\",&amp;nbsp;which I hadn't thought of, but it gives the same message: New-SmClone : Input string was not in a correct format.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But as i said, "funny" thing is, that if i use a path that not exists like&amp;nbsp;'c:\MountPoint\Foo\', it gives me: New-SmClone : Invalid mount path: Path does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 06:13:28 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440857#M13767</guid>
      <dc:creator>Rohnitz</dc:creator>
      <dc:date>2023-01-10T06:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440920#M13770</link>
      <description>&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I can't get it to work either.&lt;/P&gt;&lt;P&gt;I've just spent a couple of hours setting this up in a test environment and tested it with SnapCenter 4.5, 4.6 and 4.7p1 on Windows 2016.&lt;/P&gt;&lt;P&gt;Can only confirm the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 21:43:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440920#M13770</guid>
      <dc:creator>WaffleBrewer</dc:creator>
      <dc:date>2023-01-12T21:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440925#M13771</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Thank you for trying this out.&lt;BR /&gt;Looks like i will have to look into registering a bug instead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 07:34:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/440925#M13771</guid>
      <dc:creator>Rohnitz</dc:creator>
      <dc:date>2023-01-13T07:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with powershell New-SmClone and AssignMountPointUnderPath</title>
      <link>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/449675#M13970</link>
      <description>&lt;P&gt;As an small update I just installed 4.9P1 and tried. It is still the same.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 14:54:15 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Problem-with-powershell-New-SmClone-and-AssignMountPointUnderPath/m-p/449675#M13970</guid>
      <dc:creator>Rohnitz</dc:creator>
      <dc:date>2023-12-12T14:54:15Z</dc:date>
    </item>
  </channel>
</rss>

