@ECHO OFF CLS ECHO THIS IS A SAMPLE BATCH FILE. DO NOT EXPECT IT WORK. PLEASE REFER ECHO TO THE Win-EQF* USER'S MANUAL AND THE ONLINE FAQ AT http://www.win-eqf.com REM Map just about any unused drive letter (Z: in the example below) to your DropBox folder REM using the SUBST command (first deleting any SUBST'ed drive already mapped to Z:) : SUBST Z: /D SUBST Z: C:\"Documents and Settings"\HamRadio\"My Documents"\Dropbox\LogBackups REM ID.TXT is just an empty text file residing in the backup destination folder - if we can REM reach it, we'll probably be able to squeeze in some backup files to the same destination: IF NOT EXIST Z:\ID.TXT GOTO END REM Perform backup of two Win-EQF* logs -- from whatever drive/folder you have installed REM Win-EQF* to -- in this example, C:\HamRadio\Win-EQF C: CD C:\HamRadio\Win-EQF BACKUP MainLog Z:\ BACKUP QRPLog Z:\ REM Remove the SUBST'ed Z: drive: SUBST Z: /D :END