Skip to main content

How to backup using Windows command line?

By March 25, 2010January 17th, 2022FAQs

Below is an example of using Windows command line to “pull” the most recent backup files from an Sendio ESP at 10.0.0.10.

Please refer to the Sendio Backup Restore Guide, which can be found at https://sendio.com/support/documentation, for more information.

C:\\> ftp 10.0.0.1
Connected to 10.0.0.1.
220 (vsFTPd 2.0.4)
User (192.168.3.56:(none)): sysarchive
331 Please specify the password.
Password:
230 Login successful.
ftp> cd backup
250 Directory successfully changed.
ftp> bin
200 Switching to Binary mode.
ftp> prompt off
Interactive mode Off.
ftp> ls
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
icebox_backup-20080610-2200.tar.gz
icebox_backup-20080610-2200.tar.gz.md5
icebox_backup-20080611-2200.tar.gz
icebox_backup-20080611-2200.tar.gz.md5
icebox_backup-20080612-2200.tar.gz
icebox_backup-20080612-2200.tar.gz.md5
226 Directory send OK.
ftp: 228 bytes received in 0.00Seconds 228000.00Kbytes/sec.
ftp> lcd c:\\sendio_backup
Local directory now C:\\sendio_backup.
ftp> mget *20080612*.*
200 Switching to Binary mode.
200 PORT command successful. Consider using PASV.
150 Opening BINARY mode data connection for icebox_backup-20080612-2200.tar.gz (175542403 bytes).
226 File send OK.
ftp: 175542403 bytes received in 30.85Seconds 5690.93Kbytes/sec.
200 PORT command successful. Consider using PASV.
150 Opening BINARY mode data connection for icebox_backup-20080612-2200.tar.gz.md5 (82 bytes).
226 File send OK.
ftp: 82 bytes received in 0.00Seconds 82000.00Kbytes/sec.
ftp> quit
221 Goodbye.
C:\\>