|
ahhh...actually maybe mscdex is NOT the actual driver.....mscdex is a program that gives the driver its letter etc...they call it a "redirector"....what it does is REFER to a driver
so what you have to do is in your autoexec.bat file you put the mscdex line and have it refer to a device driver
then in your config.sys file you list the actual device driver and give it a name...the name must match the name listed in the mscdex line of the autoexec.bat file
------
for instance...I have a boot floppy I made...it uses a different program instead of mscdex...called "shsucdx"....but it works the same way....and I use a cd driver called "vide-cdd.sys"
so what I have to do..is in the autoexec.bat file I have to put the shsucdx and have it refer to the name that I give to the actual "vide-cdd.sys" driver.
so my autoexec.bat file looks like this
---------------------------------
@echo off
shsucdx /d:vide,t
ctmouse
doskey
set path=a:\;t:\
restore.bat
--------------------
so ignoring the other bits..you see I have my "shsucdx" referring to the D: drive and the name of the driver is "vide" (the "T" is just some kind of "switch" for some function which I have long forgotten)
so im my config.sys file I would have to have a line referring to my "vide-cdd.sys" and naming it "vide" so that it will match the name in the autoexec.bat
so my config.sys looks like this
-------
device=himem.sys
device=vide-cdd.sys /d:vide
---------
I just picked the name "vide"...I could have used anything..for instance "banana" as long as it was in both the autoexec and config.sys files.
----
also of course I have to have the ACTUAL vide-cdd.sys driver itself on the floppy.....cuz the entries in config.sys etc just REFER TO the driver...so the actual driver has to be there also.
also of course the actual shsucdx.exe has to be on the floppy also
-----
so using my examples you would just rename my shsucdx to "mscdex" and my "vide-cdd.sys" to whatever the name of the usual microsoft file is.....probably atapi.sys
----so the mscdex is not the actual driver..it is an executable that refers to the driver named in the config.sys file...the mscdex gives the driveletter etc
JP
ps..one of the first things I did when learning comps and studying for A+ was to try to take a w95 boot floppy...which has no cdrom capability and change it to give a dos cdrom driver...using mscdex and atapi.sys and the proper entries in the autoexec.bat and config.sys file. It was a GREAT learning experience...especially considering the A+ book I had, by Mike meyers, had th einstructions for doing so ALLLLL screwed up, lol...so I had to figure it out myself, lol..which is the best way to learn
__________________
"Even a fool is thought to be wise if he is silent"
|