I'm happy to help, Ric. I've also made another modification, if you're interested. I've added 'backup of backup' feature. It basically copies the created backups from the backup directory to user-specified locations that are specified in .ini file (semicolon separated). It's really helpful, if you... are paranoid. It's also possible to apply the same fifo rules, so the older backups will be deleted from those locations as well, if you allow it by setting UseFifo to true. Example config: Changes that I made to "core_functions_inc.vbs":
Function us_dump_database_ex(db_name,dump_to_file,wait)
... Previous lines are unchanged
ExecCMD "cmd /c " & strCmd,0,wait 'Run command hidden.
End Function
Function us_dump_database(db_name,dump_to_file)
Call us_dump_database_ex(db_name,dump_to_file,false) 'Run command hidden. Do not wait to complete
End Function
And the rest of the changes can be found in db_backup script, which I've attached to this topic, again. Cheers db_backup.zip