2009-10-07 15:10:10 UTC
Results from more testing:
The Command Line Generator produces an extra space between the different parameters. There should only be one space instead of two between parameters. My new command line is:
"C:\Users\Eric\Desktop\DrvBK2\DrvBK.exe" MODE="BACKUP" BKPATH="C:\Users\Eric\DriverBackup2" BKDESC="All Drivers" BKFILE="Backup %DATE% from %COMPUTERNAME%.bki" BKPATHFTM="Drivers %COMPUTERNAME% on %DATE%" BKDEVFMT="%DEVNAME%" OPT="ARL"
This command line expands to:
"C:\Users\Eric\Desktop\DrvBK2\DrvBK.exe" MODE="BACKUP" BKPATH="C:\Users\Eric\DriverBackup2" BKDESC="All Drivers" BKFILE="Backup Wed 10/07/2009 from i7.bki" BKPATHFTM="Drivers I7 on 10/07/2009" BKDEVFMT="" OPT="ARL"
Note that %DEVNAME% is blank and that BKPATHFTM has I7 rather than i7.
This does generate the following backup and will not generate a second backup if one exists with same name:
"C:\Users\Eric\DriverBackup2\Drivers I7_10 7 2009" BUT this should be:
"C:\Users\Eric\DriverBackup2\Backup 10 7 2009 from i7.bki"
The backup file name of "Drivers I7_10 7 2009" is the same as would result from a GUI backup if one did not change the defaults. The last time I ran using the GUI I did specify the same file names as my command line and it backed up to that name.
Any suggestions ?