Topic: Ability to add a custom command to PRESETUP.CMD
Been playing with a program written in VB 6 that can run while the drivers are extracted (method 2).
Would be good if the DriverPack Base had an option to run a command after detection of the CD drive letter and before beginning the extraction process. It would save me from editing the PRESETUP.CMD as below every time I make a change:
*SNIP*
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:
::Below added manually to show some sort of progress
start c:\install\trtprog.exe Please wait while drivers are extracted...
REM +==========================================================================+
REM | Decompressing the DriverPacks to the harddisk.
*SNIP*
BTW, this program runs well and displays a progress bar and my company logo for the duration of the extraction. If someone can tell me how to attach the program and/or it's VB source to a forum message (or somewhere else) I'm happy to.