I've downloaded a bootdisk of msdos v6.22 off the net with cdrom drivers off the net... works perfectly by itself through memdisk but I want to be able to use it by ubcd's expert mode and add my own programs like ntfspro, and a few compression tools, ntfspro, etc...
I renamed the file to msubcd.img (of course) and then copied bcdw.com from freedos image and edited my autoexec to include:
http://www.ultimatebootcd.com/forums/viewtopic.php?t=226&highlight=msdos
Code:
rem ---- BCDW ----
if not exist bcdw.com goto _bcdw
bcdw CheckForBCDW
if errorlevel 1 goto _bcdw
bcdw FindBootableCDLetter
if errorlevel 1 goto _bcdw
bcdw GetBootImageCommandLine
if errorlevel 1 goto _bcdw
if "%cd1%"=="" set cd1=%BCDW_CDROM%:
set ubcdcmd=%BCDW_CL%
:_bcdw
then used to boot
Code:
..... then isolinux memdisk initrd=/images/msubcd.img ubcdcmd=ntfs
Code:
cls
cd \dosapps\ntfs
ntfspro
to
Code:
/dosapps/ntfs/startup.bat
again, the disk boots fine but after i loads the cdrom drivers it stoped and I'm dropped to command line without errors. I've tried just about everything found on the post above too and nothing has worked..
What am I doing wrong?