我想在 PowerShell 中加密密码
我试过这个:
在 CLI 中:
Read-Host -prompt "Password ?" -AsSecureString | ConvertFrom-SecureString | out-file "D:\root.pwd"
在我的 script.ps1 中:
$pwsNAS = Get-Content "D:\root.pwd" | ConvertTo-SecureString
plink.exe root@192.168.x.y -pw $pwdNAS df
但它不起作用...
我尝试使用凭据,但似乎并没有更好...
(我的密码没有任何空格或重音字符)
任何想法?