<?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: powershell cmdlet for security login publickey cli in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110728#M4531</link>
    <description>&lt;P&gt;Unfortunately, there is no direct powershell commandlet for this. What I have done to get around this is to utilize the "invoke-ncssh" command to run the command. &amp;nbsp;Sorry to be a disappointment in this area.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Oct 2015 12:41:31 GMT</pubDate>
    <dc:creator>coreywanless</dc:creator>
    <dc:date>2015-10-07T12:41:31Z</dc:date>
    <item>
      <title>powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110694#M4528</link>
      <description>&lt;P&gt;Hi Powershell Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I am looking for the powershell cmdlet that does the following cli equivalent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;security &amp;nbsp;login publickey&amp;nbsp; create -username (account) -comment (change control #) -vserver (clustername) -index 0 -publickey (ssh key)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is none, I will use the Inovke-NcSsh. But before that wanted to check with the experts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Adai&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 23:07:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110694#M4528</guid>
      <dc:creator>AdaikkappanArumugam</dc:creator>
      <dc:date>2025-06-04T23:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110724#M4530</link>
      <description>&lt;P&gt;I haven't had much luck searching as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im curious if this is going to be for a domain implementation for ssh keys&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 11:58:12 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110724#M4530</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2015-10-07T11:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110728#M4531</link>
      <description>&lt;P&gt;Unfortunately, there is no direct powershell commandlet for this. What I have done to get around this is to utilize the "invoke-ncssh" command to run the command. &amp;nbsp;Sorry to be a disappointment in this area.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 12:41:31 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110728#M4531</guid>
      <dc:creator>coreywanless</dc:creator>
      <dc:date>2015-10-07T12:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110744#M4532</link>
      <description>&lt;P&gt;I'm not sure this is an answer but I did just read the Toolkit announce in the forum on DataONTAP PSTK 3.3 (inside &amp;nbsp;new NetApp &amp;nbsp;ontap/santricty/mars PSTK) which ays with ontap 8.3.1 and this new TK there are 7 new 'Security Key Mgmt' cmdlets.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 15:45:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110744#M4532</guid>
      <dc:creator>korns</dc:creator>
      <dc:date>2015-10-07T15:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110751#M4533</link>
      <description>&lt;P&gt;Thats what I ended up doing...&lt;/P&gt;&lt;P&gt;$command = "security login publickey create &amp;nbsp;-username $($userList.userName) -index 1 -publickey ""$($userList.publicKey)"""&lt;/P&gt;&lt;P&gt;Invoke-NcSsh $command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do note the multiple quotes around the key.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adai&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 17:01:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110751#M4533</guid>
      <dc:creator>AdaikkappanArumugam</dc:creator>
      <dc:date>2015-10-07T17:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110856#M4536</link>
      <description>&lt;P&gt;Does New-NcUser get you what you are looking for?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2015 03:24:14 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110856#M4536</guid>
      <dc:creator>mcgue</dc:creator>
      <dc:date>2015-10-09T03:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110889#M4537</link>
      <description>&lt;P&gt;'New-NcUser' will allow you to create the user and allow publickey as an authentication method, but it doesn't allow you to upload your public key. &amp;nbsp;(At least in any combination I have tried)&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2015 12:21:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110889#M4537</guid>
      <dc:creator>coreywanless</dc:creator>
      <dc:date>2015-10-09T12:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: powershell cmdlet for security login publickey cli</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110960#M4538</link>
      <description>&lt;P&gt;I looked at the 3.3 toolkit and the new security key items are for the key server options for running encrypted disks, so that doesn't look like it will help. &amp;nbsp;It looks like the suggestion that Adai has for you above is the best way to get this done now.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Oct 2015 00:58:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/powershell-cmdlet-for-security-login-publickey-cli/m-p/110960#M4538</guid>
      <dc:creator>mcgue</dc:creator>
      <dc:date>2015-10-11T00:58:25Z</dc:date>
    </item>
  </channel>
</rss>

