Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

Toby

Re: My script is asking for password

Yes it works after I insert the private key.
Thanks for the help
martin

Re: My script is asking for password

In GUI you are authenticating with private key:
. 2018-02-22 15:14:15.141 User name: ei000740 (Password: No, Key file: Yes, Passphrase: No)
...
. 2018-02-22 15:14:15.441 Reading key file "C:\Users\nemits\Desktop\Cert\IU_Private.ppk"
...
. 2018-02-22 15:14:15.512 Offered public key
. 2018-02-22 15:14:15.521 Offer of public key accepted
! 2018-02-22 15:14:15.521 Authenticating with public key "rsa-key-20180209"
. 2018-02-22 15:14:15.673 Sent public key signature
. 2018-02-22 15:14:15.677 Access granted

You have specified no private key in the script.

You can have the GUI generate a script template for you:
https://winscp.net/eng/docs/ui_generateurl#script
Toby

Re: My script is asking for password

Attached are the logs.
martin

Re: My script is asking for password

Please attach a complete session log file both from the script and GUI.
Toby

My script is asking for password

Hi guys
I am trying to automatically download files and delete them after the download.
But when I run it keeps asking me for password.
There is no password on the SFTP server and it works with WinSCP client.

My script looks like this:
# Connect
open sftp://Username:@Servername/ -hostkey="ecdsa-sha2 key"
# Change remote directory
cd path-to-remote
# Force binary mode transfer
option transfer binary
# Download file to the local directory d:\
get -delete *.* path-to-local-machine
 
# Disconnect
close
# Exit WinSCP
exit