FTP Rush in background mode

Please post here if you have problems in using FTP Rush.
Post Reply
mjasni4ok
Posts: 3
Joined: Thu Feb 03, 2011 5:05 pm

FTP Rush in background mode

Post 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
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Re: FTP Rush in background mode

Post 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.
mjasni4ok
Posts: 3
Joined: Thu Feb 03, 2011 5:05 pm

Re: FTP Rush in background mode

Post 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
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Re: FTP Rush in background mode

Post by FTP »

Sorry, I don't know, I think you need a console sftp client.
mjasni4ok
Posts: 3
Joined: Thu Feb 03, 2011 5:05 pm

Re: FTP Rush in background mode

Post by mjasni4ok »

Thanks!
Post Reply