I would like to encrypt a password in powershell
I tried this :
In CLI :
Read-Host -prompt "Password ?" -AsSecureString | ConvertFrom-SecureString | out-file "D:\root.pwd"
In my script.ps1 :
$pwsNAS = Get-Content "D:\root.pwd" | ConvertTo-SecureString
plink.exe root@192.168.x.y -pw $pwdNAS df
But it doesn't work... I tried with credentials but It doesn't seems to be better...
(My password doesn't have any space or accented character)
Any Idea ?
-pwoption accepts a password, not an encrypted password. – arkascha Feb 11 at 22:27plink.exe root@192.168.x.y -pw $pwdNAS dfin a powershell script without my visible password... – jgoup Feb 11 at 22:36rootaccout with remote access, actually you are stongly advised to disable root login via ssh. – arkascha Feb 11 at 23:49