FileZilla

Post date: Dec 25, 2010 2:41:41 PM

@rem FileZilla Client is a fast and reliable FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface. FTP 客戶端軟件

@rem https://filezilla-project.org/

if not exist "%SystemDrive%\Program Files (x86)" goto not_64bit

if exist FileZilla\FileZilla_3.43.0_win64-setup.exe goto next

start /wait "" wget.exe "https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe" --directory-prefix=FileZilla

:next

start /wait FileZilla\FileZilla_3.43.0_win64-setup.exe /S

goto end

:not_64bit

if exist FileZilla\FileZilla_3.43.0_win32-setup.exe goto next

start /wait "" wget.exe "https://download.filezilla-project.org/client/FileZilla_3.43.0_win32-setup.exe" --directory-prefix=FileZilla

:next

start /wait FileZilla\FileZilla_3.43.0_win32-setup.exe /S

:end