micro SD card into i back up a script

/system backup save name="/disk1/backup_name"
/system backup save name="/disk1/$fname1"
:log info message="System backup finished.";
/export compact file="/disk1/$fname2"
Thank youEven better, this nice backup script continues on to ftp the backup to another destination.Code: Select all/system backup save name="/disk1/backup_name"
http://harry.subnetworx.de/2013/12/27/a ... ackup-ftp/
But, you could strip out the the ftp and local file delete parts. That would leave you with unique file names on the SD each time it runs.
You would have to edit the file destination to use disk1, like this:Code: Select all/system backup save name="/disk1/$fname1" :log info message="System backup finished."; /export compact file="/disk1/$fname2"
#************************************************************************************************
# Parameters
#************************************************************************************************
# First get the identity for the Export file name
:local ConfigExportName [/system identity get name]
# get current date in format mm/DD/YYYY
:local date [ /system clock get date ]
# convert to YYYYMMDD
:local months ("jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec");
:local month [ :pick $date 0 3 ]; :local day [ :pick $date 4 6 ]; :local year [ :pick $date 7 11 ];
:local mm ([ :find $months $month -1 ] + 1);
:if ($mm < 10) do={ :set month ("0" . $mm); } else={ :set month $mm; }
:set date ($year . "-" . $month . "-" . $day);
:set ConfigExportName ($ConfigExportName . "_" . $date);
:put $ConfigExportName
/export file=$ConfigExportName
:log info ("$ConfigExportName created succesfully!");