- martin
Post a reply
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
Topic review
- flowdrw
How can I automate to put the two latest file?
& "C:\Program Files (x86)\WinSCP\WinSCP.com" `
/log="C:\writable\path\to\log\WinSCP.log" /ini=nul `
/command `
"open sftp://192.168.1.1/
-hostkey=
-privatekey=
"lcd `"`"C:\Program Files\Microsoft SQL Server\Backup`"`"" `
"cd /owncloud/backup" `
"put latest file 1" `
"put latest file 2" `
"exit"
$winscpResult = $LastExitCode
if ($winscpResult -eq 0)
{
Write-Host "Success"
}
else
{
Write-Host "Error"
}
exit $winscpResult