Tomcat: Is there anything in the script that is processed before :GETBOOTBIN but is needed to parse :GETBOOTBIN properly?
You modified the :GETBOOTBIN section of the script after Kramy suggested something to get rid of the error message that pops up. For some reason, I think the message still pops up. I haven't observed this, however, because I have boot.bin in HFTOOLS, and therefore the script skips that section when I run it. Nevertheless, when I copied that section into a separate batch file and ran it, the error message popped up.
I will run HFSLIP without boot.bin and see if I get the message.
Edit: Actually, I think I may have a special case. I have a drive, D:, that is a ZIP drive and normally does not have anything in it. If I run the test script (that has only :GETBOOTBIN) and leave echo on, the error pops up after it processes drive D.
(The following has nothing to do with the above problem)
On a side note, I think you should insert the following line into :GETBOOTBIN so that HFSLIP does not try to run BBIE if no disc is detected.
Quote
REM Modified by Kramy -- Thanks!
FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\ IF EXIST %%i:\I386 SET HFSLIP=%%i
IF NOT DEFINED HFSLIP GOTO EOF
HFTOOLS\BBIE.EXE %HFSLIP%:© IMAGE1.BIN HFTOOLS\BOOT.BIN&DEL/Q/F IMAGE1.BIN
GOTO EOF
This post has been edited by Super-Magician: 01 May 2006 - 04:06 PM