Microsoft Virtualization Discussions

Error trying to add credential on powershell

Segun
613 Views

Please see attached picture, it pops the error message whenver we run "Add-Credential  ip-address -cred CredInfo" and supplying password. 

 

Please help any useful idea/info. thank you

 

Segun_0-1730499461170.png

 

5 REPLIES 5

Sanaman
510 Views

It works for me

Sanaman_1-1730687648388.png

You can use this way to save the encrypted password (alternative way)

 

Powershell Store Encrypted Password for auto login
$credential = Get-Credential
$credential.password |ConvertFrom-SecureString |set-Content C:\Users\<user_name>\encrypted_password.txt
$encrypted = Get-Content C:\Users\<user_name>\encrypted_password.txt | ConvertTo-SecureString
$dom_user = "domain\user_name"
$credential = New-Object System.Management.Automation.PsCredential($dom_user, $encrypted)

Add-NcCredential -Controller <controller> -credential $credential

Segun
476 Views

Thank you Sanaman,

 

I tried your recommended script and still getting error shown in below attachment.

 

Sanaman
454 Views

What version is your PSTK?

Scripts> Import-Module "C:\Users\<User>\Documents\PowerShell\Modules\netapp_ontap\NetApp.ONTAP"


PS C:\Users\user\Scripts> get-natoolkitversion

Major Minor Build Revision
----- ----- ----- --------
9 15 1 2410

Segun
401 Views

Same as you have up there. First pic is the new environment we want it on and it has same kitversion you shared. second picture is one of our very old environment that has everything working perfectly ok with version 4  1  0  0.

 

Screenshot 2024-11-05 094305.pngOld.png

Segun
365 Views

Hi Sanaman, 

i ended up downgrading to Major (4)  Minor (1)  Build  (0) Revision (0) with your "Add-NcCredential -Controller <controller> -credential $credential"  command against my initial "Add-Credential  ip-address -cred CredInfo" and it worked. Thanks so much.

 

Public