Backups are generally created on the following media:
- DVD/R
- External USB flash devices
- External USB HDD
A laptops SD card slot generally goes unused. Mounting an external USB flash device takes over a USB port and can break if you forget to unplug the device.
I've been experimenting in creating one click backups on a SD flash card, with great results! The greatest advantage is that you do not tie up a USB port and the SD card does not need to be ejected at all.
- Stick in a SD card
- Create a batch script that runs the backup either manually or invoked through a task/CRON schedule
The following script executes winrar with command line parameters and dumps the ZIP onto the SD card.
-- Begin Copy and Paste --
@ echo offecho Kill a running apptaskkill /f /im APP_NAME_HERE.exeecho cd into the winrar directoryc:cd progra~1\winrar\echo Run winrarwinrar a f:\ -r -afrar -m1 -rr -rv -t -ilog -ag+bck-MMM-DD_YYYY__NNN -x@F:\exclude-dirs.txt F:\SOURCEecho Copy .ZIP to the SD Card, h:\ is the SD destinationcopy /v f:\bck-*.rar h:\pause-- End Copy/Paste --
Dump the above contents into a .bat file and voila!
Requirements:
SD/MMC/MS Card -
newegg.comWinrar or
WinzipLaptop, duh!