Page 1 of 1

FTP Rush in background mode

Posted: Thu Feb 03, 2011 5:46 pm
by mjasni4ok
Hi,

Is it possible to configure FTP Rush client to automatically move files from FTP in background mode in Windows?
Schedule tasks cannot open FTP Rush in command line interface, but other solutions are not documented.

Best regards,
Nikita

Re: FTP Rush in background mode

Posted: Thu Feb 03, 2011 6:00 pm
by FTP
No, there is no background mode with FTP Rush. I think your can use Windows Schedule Task to run a batch file, you can create a batch file "autoftp.bat" like this:

@echo off
ECHO USERNAME> myuser.cfg
ECHO PASSWORD>> myuser.cfg
ECHO ls >> myuser.cfg
ECHO get FILENAME >> myuser.cfg
ECHO ls >> myuser.cfg
ECHO quit >> myuser.cfg
ftp -s:myuser.cfg ServerIP
exit


And you may replace those 4 variables "USERNAME", "PASSWORD", "FILENAME", "ServerIP" into yours.

Re: FTP Rush in background mode

Posted: Thu Feb 03, 2011 6:07 pm
by mjasni4ok
Hi,

Thanks for quick answer.

Unfortunatly we are using sFTP (SSH) and standard windows ftp client does not support it.
Do you have any other alternatives?

Best regards,
Nikita

Re: FTP Rush in background mode

Posted: Thu Feb 03, 2011 6:10 pm
by FTP
Sorry, I don't know, I think you need a console sftp client.

Re: FTP Rush in background mode

Posted: Thu Feb 03, 2011 6:19 pm
by mjasni4ok
Thanks!