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
しかし、それは機能しません...
クレデンシャルで試しましたが、良くないようです...
(私のパスワードにはスペースやアクセント文字がありません)
何か案が?