<?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: using password out of saved credentials in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35497#M7265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ver ymuch !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Oct 2013 06:32:41 GMT</pubDate>
    <dc:creator>THORSTEN_KRAUSE</dc:creator>
    <dc:date>2013-10-08T06:32:41Z</dc:date>
    <item>
      <title>using password out of saved credentials</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35485#M7259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you tell me how to get the password out of Get-WfaCredentials return value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$myCredentials = Get-WfaCredentials -Host "X100X" -ErrorAction stop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Thorsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:52:23 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35485#M7259</guid>
      <dc:creator>THORSTEN_KRAUSE</dc:creator>
      <dc:date>2025-06-05T05:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: using password out of saved credentials</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35490#M7262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the command "Send Email" There is a function defined which can tell you how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function ConvertFromSecureToPlain{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; param(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Parameter(Mandatory=$true)]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [System.Security.SecureString] $SecurePassword&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Create a &amp;amp;amp;quot;password pointer&amp;amp;amp;quot;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $PasswordPointer = [Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecurePassword)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Get the plain text version of the password&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $PlainTextPassword = [Runtime.InteropServices.Marshal]::PtrToStringAuto($PasswordPointer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Free the pointer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Runtime.InteropServices.Marshal]::ZeroFreeBSTR($PasswordPointer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Return the plain text password&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $PlainTextPassword&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call this using something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; $myPassword =&amp;nbsp; ConvertFromSecureToPlain -SecurePassword &lt;SPAN style="color: #454545; font-family: Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;"&gt;$myCredentials.Password&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 06:18:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35490#M7262</guid>
      <dc:creator>sinhaa</dc:creator>
      <dc:date>2013-10-08T06:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: using password out of saved credentials</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35497#M7265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ver ymuch !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 06:32:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/using-password-out-of-saved-credentials/m-p/35497#M7265</guid>
      <dc:creator>THORSTEN_KRAUSE</dc:creator>
      <dc:date>2013-10-08T06:32:41Z</dc:date>
    </item>
  </channel>
</rss>

