0
votes
2answers
174 views

password encryption used for plink.exe command

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 : ...
0
votes
4answers
5k views

How does PUTTY/PLINK determine a command has returned?

Is it newline? prompt? What exactly? Trying to run powershell over plink and the command executes but plink doesn't recognise its finished and the session hangs. Most curiously though, the command ...