A .bat file is simply a DOS Batch file. Really, it's nothing more than a plain text file with a .bat extension.
Since it's a single user DB, use any text editor (Notepad, Wordpad, etc) to create something like this:
********* Start of the .bat file *********
COPY C:\Path To Your Database\DataBaseName.MDB C:\Path To Your Backup Database\BackupDataBaseName.MDB
"C:\Path To MS Office\MSACCESS.EXE" "C:\Path To Your Database\DataBaseName.MDB"
********* End of the .bat file *********
Save it as BACKUP.BAT (The two lines may wrap when displayed in Access Forums. Those in your .bat file should each be on it's own line. Don't wrap 'em with hard page breaks. And you don't need the lines with asterisks.)
You probably want to have it Run Minimized and Close On Exit (Right Click the .bat file in Windows Explorer, and go Properties, Program Tab, select Run Minimized and Close on exit) if you're in Win9x/Me.
BTW, what version of Windows are you running? If you're using WinNT or Win2K, I believe those options are automatic, and if you're running WinNT or Win2K you can make it a .CMD extension.
Double click on the .bat file from Windows Explorer. Access should open up with your database and there should be a backup copy of your database.
HTH,
Ken Grubb
Burlington, NC, USA
[This message has been edited by Ken Grubb (edited 08-05-2001).]
[This message has been edited by Ken Grubb (edited 08-06-2001).]