Any 3rd party utility to create bootable floppy from within XP Pro?

  • Thread starter Thread starter Arawak
  • Start date Start date
A

Arawak

I keep an entire installation of Win98SE just for the few times when I
have the need to create a bootable floppy with CD-ROM support. If I
could find a utility that would provide the same function, I could
probably re-gain a lot of space.
TIA
Arawak
 
Hi,

Download the files from www.bootdisk.com should you need to create one of
them.

--
Best of Luck,

Rick Rogers aka "Nutcase" MS-MVP - Win9x
Windows isn't rocket science! That's my other hobby!

Associate Expert - WinXP - Expert Zone
 
Windows XP will create a "Windows ME" equivalent boot disk,
from the Format option for floppies. However, it doesn't load the
generic CD-Rom driver.

Building a 98-Boot disk is a simple process - just a few drivers and
commands inside Config.Sys & Autoexec.Bat. The code shown
below will also create a "Small" ramdirve, just like the full 98-2nd
edition boot disk.

Windows 98 drivers required
1. RamDrive.Sys
2. Oakcdrom.Sys
3. mscdex.Exe
4. Smartdrv.Exe
5. Mouse.Com

(Contents of ) Config.Sys
[MENU]
menuitem=IDE_CD, Install Generic IDE CD-ROM
menuitem=No_CDROM, Do not install CD-ROM Support
menudefault=IDE_CD,5

[IDE_CD]
Device=RamDrive.Sys /E 8192
REM
Device=oakcdrom.Sys /D:oemcd001

[NO_CDROM]
Device=RamDrive.Sys /E 8192
REM

[COMMON]

(Contents of) Autoexec.Bat
@Echo Off
Cls
mscdex.Exe /D:oemcd001
Mouse
Smartdrv

Better yet, Easy CD Creator can take a Boot Floppy and create a
(savable) image. This way you can emulate a floppy boot on CD-R's
and use it anytime you need a "Bootable" CD disk.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top