Re: Signing with PGP via WinSCP.com
WinSCP cannot sign file with PGP. You have to do it before uploading the file using other tool.
# Automatically abort script on errors
option batch abort
# Disable overwrite confirmations that conflict with the previous
option confirm off
# Connect to SFTP server using a password
open sftp://Username:[email protected]/
#
# Uploads all files in the dir
put C:\folderpath\* /FTPLocation/
# Disconnect
exit