MarshallSoft

Downloading Files Using FTP

Unfortunately, most Windows browsers no longer support FTP. However, the following three methods can be used to downfile a file from our FTP server.

(1) Use Internet Explorer (not Edge), which is built into Windows 10.

For future refernce, a desktop shortcut can be created using "C:\Program Files (x86)\Internet Explorer\iexplore.exe".

(2) Use any FTP Client software (FileZilla, CuteFTP, WinSCP, Cyberduck, etc.).

Server: ftp.drivehq.com
User: anonymous
Pass: mike@gmail.com (or your email adddress)
Path: MarshallSoft/PublicFolder
Mode: Binary, Passive

(3) Use the Windows FTP Command Line Client to download in anonymous mode. For example, to download a file from our download site:

ftp -A ftp.drivehq.com
cd MarshallSoft
cd PublicFolder
binary
literal pasv
get FILENAME
bye

Note that most filenames begin with the customer ID followed by a underscore (not a space).

The Windows command line FTP client is located at "C:\Windows\System32\ftp.exe"