Ok, I've made what I thought are all the necessary edits to the autoexec.bat and config.sys, but I am prompted to put a floppy in - obviously I'm missing something, but can't figure out where.
I'm pasting the contents of my newly edited autoexec.bat and config.sys file below:
CONFIG.SYS
[menu]
menuitem=CD, Start computer with CD-ROM support.
menuitem=NOCD, Start computer without CD-ROM support.
menuitem=HELP, View the Help file.
menudefault=CD,30
menucolor=7,0
[CD]
device=c:\loader\himem.sys /testmem

ff
device=c:\loader\oakcdrom.sys /D:mscd001
device=c:\loader\btdosm.sys
device=c:\loader\flashpt.sys
device=c:\loader\btcdrom.sys /D:mscd001
device=c:\loader\aspi2dos.sys
device=c:\loader\aspi8dos.sys
device=c:\loader\aspi4dos.sys
device=c:\loader\aspi8u2.sys
device=c:\loader\aspicd.sys /D:mscd001
[NOCD]
device=c:\loader\himem.sys /testmem

ff
[HELP]
device=c:\loader\himem.sys /testmem

ff
[COMMON]
files=10
buffers=10
dos=high,umb
stacks=9,256
devicehigh=c:\loader\ramdrive.sys /E 2048
lastdrive=z
AUTOEXEC.BAT
@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 c:\loader\setramd.bat %LglDrv%
set temp=c:\loader\
set tmp=c:\loader\
path=%RAMD%:\;a:\;%CDROM%:\
copy c:\loader\command.com %RAMD%:\ > NUL
set comspec=%RAMD%:\command.com
copy c:\loader\extract.exe %RAMD%:\ > NUL
copy c:\loader\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.
IF "%config%"=="NOCD" GOTO QUIT
IF "%config%"=="HELP" GOTO HELP
LH %ramd%:\MSCDEX.EXE /D:mscd001 /L:%CDROM%
echo.
GOTO QUIT
:HELP
cls
call help.bat
echo Your computer will now restart and the startup menu will appear.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
restart.com
GOTO QUIT
:QUIT
echo To get help, type HELP and press ENTER.
echo.
rem clean up environment variables
set CDROM=
set LglDrv=
Thanks!
Amber