Alanoll I set the CD rom letters up as you described in other post as below, however during the dos setup it complains the drivers cannot be found on either drive d or e & if i swap to the other DVD drive it complains it can't find the driver on drive e or d. Im a little lost on this one?
@ECHO OFF
set EXPAND=YES
SET DIRCMD=/O:N
set LglDrv=27 * 26 Z 25 Y 24 X 23 W 22 V 21 U 20 T 19 S 18 R 17 Q 16 P 15
set LglDrv=%LglDrv% O 14 N 13 M 12 L 11 K 10 J 9 I 8 H 7 G 6 F 5 E 4 D 3 C
cls
call setramd.bat %LglDrv%
set temp=c:\
set tmp=c:\
path=%RAMD%:\;a:\;%CDROM%:\
copy command.com %RAMD%:\ > NUL
set comspec=%RAMD%:\command.com
copy extract.exe %RAMD%:\ > NUL
copy readme.txt %RAMD%:\ > NUL
:ERROR
IF EXIST ebd.cab GOTO EXT
echo Please insert Windows 98 Startup Disk 2
echo.
pause
GOTO ERROR
:EXT
%RAMD%:\extract /y /e /l %RAMD%: ebd.cab > NUL
echo The diagnostic tools were successfully loaded to drive %RAMD%.
echo.
LH %ramd%:\MSCDEX.EXE /D:mscd001 /L:%CDROM%
IF EXIST D:\Win51 Set CDROM=D:
IF EXIST E:\Win51 Set CDROM=E:
IF EXIST F:\Win51 Set CDROM=F:
IF EXIST G:\Win51 Set CDROM=G:
IF EXIST H:\Win51 SET CDROM=H:
echo.
cls
echo Now installing Windows 98 SE
echo.
echo Loading...
path=%RAMD%:\;a:\;%CDROM%:\SETUP\98SE\WIN98\
OEMSETUP.EXE
echo.
GOTO QUIT
:QUIT
echo To get help, type HELP and press ENTER.
echo.
rem clean up environment variables
set CDROM=
set LglDrv=
Have I setup the batch file correctly to call the relevant drive?