Here you go... real good examples... look for the references to the MTMCDAI,SYS and MSCDEX.EXE commands:
CONFIG.SYS LAYOUT
The following is an example of what the config.sys may look like:
DEVICE=C:\WINDOWS\HIMEM.SYS
DOS=HIGH,UMB
DEVICE=C:\WINDOWS\EMM386.EXE NOEMS
FILES=30
STACKS=0,0
BUFFERS=20
DEVICEHIGH=C:\WINDOWS\COMMAND\ANSI.SYS
DEVICEHIGH=C:\MTMCDAI.SYS /D:123
Quote:
| DEVICEHIGH=C:\MTMCDAI.SYS /D:123This line is the name of the CD-ROM driver on the particular system we are working on the /D:123 represents the name of the driver which in this case is named 123 however can be named anything usually MSCD0001. Note however that /D:123 must be exactly the same in config.sys and autoexec.bat, if they are different the CD-ROM will not work in DOS.
|
AUTOEXEC.BAT LAYOUT
The following is an example of what an autoexec may look like:
@echo off
SET SOUND=C:\PROGRA~1\CREATIVE\CTSND
SET BLASTER=A220 I5 D1 H5 P330 E620 T6
SET PATH=C:\WINDOWS;C:\
LH C:\WINDOWS\COMMAND\MSCDEX.EXE /D:123
LH C:\MOUSE\MOUSE.EXE
DOSKEY
CLS
Quote:
| LH C:\WINDOWS\COMMAND\MSCDEX.EXE /D:123 Line used for the CD-ROM, if you have Windows 95+ the MSCDEX will always be in the C:\WINDOWS\COMMAND Windows 3.x or DOS usually be either in C:\DOS or C:\WINDOWS directory. the /D:123 is the name of the driver name that loads in upper memory this can be anything usually /D:MSCD0001 however this is not an actual driver this is just the name for the driver. Ensure if you change this line that you change it in the config.sys on your CD-ROM line if the two are not the same your CD-ROM drive will not load.
|
From:
http://www.computerhope.com/ac.htm#5