Computing.Net > Forums > Windows 95/98 > Handy-Dandy Boot Disk

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Handy-Dandy Boot Disk

Reply to Message Icon

Name: Doormat
Date: October 29, 2004 at 20:59:38 Pacific
OS: IBM CLONES
CPU/Ram: VARIABLE
Comment:

There are a lot of posts regarding bootdisks and the problems people encounter in using them, so I thought I would share what I do when I create a bootdisk.

To begin with, all versions of Windows 95-98-ME-2000-XP allow you to create a bootdisk with the click of a mouse, but these disks actually only set up a very basic operating system on a floppy and use the "current" command.com and cd-rom drivers for support. There is usually not much else.

The problem with this is that if the computer has an issue severe enough to keep it from booting the hard disk drive (HDD), then you need ways to investigate the machine and determine what is bothering it.

So, I do things a bit differently, beginning with using a dos floppy on which I've "sys'ed" the DOS6 or DOS6.22 command com, along with the io.sys, msdos.sys, and drvspace.sys.

That's a basic system which will boot most desk or laptop computers.

I add the following files to the "system" disk.

(for memory management)
himem.sys
emm386.exe

(for cdrom management)
btcdrom.sys
cd_atapi.sys
oakcdrom.sys
mscdex.exe
(most cdr - cdwr will respond to one of them)

(HDD checking)
fdisk.exe
format.exe
chkdsk.exe
label.exe
(format uses chkdsk and label automatically)

(interface)
edit.com
dosshell.com
dosshell.exe
qbasic.exe
qbasic.hlp
graphics.com
graphics.pro
ega.sys
ega.cpi
ega2.cpi
help.com
help.hlp
mouse.com
mouse.ini
(these provide a working desktop and file manager with mouse support, in addition to a help system to tell you about the commands)

(file and directory functions)
attrib.exe
more.com
choice.com
sys.com

(starting order)

Typical config.sys:

device=a:\himem.sys
device=a:\emm386.exe
device=a:\oakcdrom.sys /d:mscd0001
REM device=a:\ramdrive.sys 2048 512 1024 /e
dos=high
dos=umb
files=30
buffers=10,0

(sometimes I use a ramdrive, note REM)

(Typical autoexec.bat)

path=a:\;c:\
prompt $p$g
lh a:\mscdex.exe /d:mscd0001 /m:30 /e
a:\mouse.com
dir/w/o

(This setup starts computer from a:\ and displays directory of a:\ )

Notes:

The line containing the cdrom.sys may need to be changed to one of the other drivers to start the cdrom

The *.hlp files can be eliminated to make room for other programs, but this is my "standard" that allows me to view and edit a lot of files from autoexec.bat and config.sys to win.ini and other windows initiation and *.pif files. Using the help files also gives access to a lot of information concerning the commands used in the start-up files.

IF C:\ can be accessed, then you should only need to type C:\ (enter) and DIR /w/o/p (enter) to see what's on it.

If the computer objects, claiming c:\ is invalid, you can use fdisk to potentially locate problems with partitions, master boot records, or FAT Tables.

The same process will work with a Dos5 system disk and the proper versions of the listed files, the main difference being that there will be more free space on the disk, and drvspace.sys would probably be dblspace.sys instead.

Downloaded bootdisks:

These are generally good if you don't mind your cdrom being named "r:\" or "z:\" on occasion .. most come with multiple cd-rom drivers, format, and fdisk.

Another reason I make boot disks with these "extra" files on them is because quite often the only thing wrong with a computer is that someone has inadvertently changed something important which can later be edited from dos in the event of a no-start of windows. I've done it myself!

While this disk configuration will not solve all pc problems, it will give you a head-start should you decide to poke around a little and look for a solution yourself.

Good luck!

You don't have to be realistic to be cynical, but you DO have to be cynical to be realistic!



Sponsored Link
Ads by Google

Response Number 1
Name: StuartS
Date: October 29, 2004 at 22:07:39 Pacific
Reply:

AS you stated at the beginning, all versions of Windows allow you to create a boot disk. Most of the files you mention will be put on a a boot disk anyway.

However, if you are working on Window 98, A DOS 6.22 disk is not going to be a lot of use to you as it won't have long file name support nor large disk support and FAT32 support in Fdisk.

Best stick with the Boot disk designed for the OS it is working on. There are a few gotchas along the way.

Stuart


0

Response Number 2
Name: ham30
Date: October 29, 2004 at 22:11:15 Pacific
Reply:

I agree with Stuart. Unless you are very knowledgeable about Dos, I think it's better to stick with the diskette created by the appropriate OS.


0

Response Number 3
Name: Mechanix2Go
Date: October 29, 2004 at 23:51:34 Pacific
Reply:

Hi Doormat,

I applaud your efforts.

I'm intrigued at the concept of 2k/XP creating a boot floppy. Maybe you can give me a few hints for the handicapped.

I always assign a letter to the CDROM so I know where it is. I've seen hundreds of msgs representing thousands of hours of wasted time trying to 'find the CD.'

I usually set lastdrv v, leaving w x y z for Novell. (Old habits die hard.)

For CD drivers, you can have multiple drivers in config, as does a 98 startup, which is messy, but saves your having to edit config if it doesn't load the one you chose.

Note the a:\ preceding the device is superflous.

This will save you setting a path to a non-exisyen drive:

if exist c:\nul path=a:\;c:\;

And this will not change to the c drive:

c:\ [enter]

This will:

c: [enter]

And if c is non-existent, you'll get hung. It's a better idea to:

dir c:\

Stuart,

No, DOS 6 will not have LFN support. But neither will 7.10.2222 unless and until the 32 bit kernel is loaded.

M2


0

Response Number 4
Name: Dan Penny
Date: October 30, 2004 at 04:06:43 Pacific
Reply:

I too agree with the others. If you're working on large disks, the proper support isn't there. As well, if you're setting up a machine for 95 and up, sys.com won't be of any value either really. Actually, all MS and MS Windows O/S loads sys the drive for you. About the only time you'd need to sys the drive is when you're setting up a machine with proprietary cdrom drivers in config.sys/autoexec.bat, so the machine doesn't loose the cdrom when it first reboots to "Continue to load windows" setting up the hardware end of it.


0

Response Number 5
Name: StuartS
Date: October 30, 2004 at 09:39:05 Pacific
Reply:

>> I'm intrigued at the concept of 2k/XP creating a boot floppy. Maybe you can give me a few hints for the handicapped. <<

Windows Explorer. Right click Drive A: Select format and click "Create MS-DOS Startup Disk."

All this will contain in the bare minimum to get the system up and running, but with Windows XP, that is all that is needed. Everything else can be done form the bootable CD drive. The boot floppy is designed to be used when flashing the BIOS.

Stuart


0

Related Posts

See More



Response Number 6
Name: Doormat
Date: October 30, 2004 at 10:05:57 Pacific
Reply:

I don't mean that the proposed setup for a boot disk will always work, but I have had pretty good luck with the older computers.

Speaking of old habits that die hard, I tend to use 8-character filenames as often as possible, reducing the problem associated with mis-handling of long filenames.

Agreed, "a:\" is superfluous, and "C:" is appropriate for changing drives ... I just wrote it this way for those of us who are not experts, but have SEEN this notation in books, web pages, and help forums ... sometimes it is more confusing to leave out a superfluous character or command than it is to include it for the sake of clarity.

I'll just sit quietly and watch for a bit ...


You don't have to be realistic to be cynical, but you DO have to be cynical to be realistic!


0

Response Number 7
Name: trvlr
Date: October 30, 2004 at 11:08:26 Pacific
Reply:

Doormat:

I can echo your use of the "old" 8.3 folder names (especially in early stages...); often can be a very useful route to follow.

Also your efforts were OK and will doubltess be of use to many folks (regardless of level of know-how/ability). A useful reference for the archives.


0

Response Number 8
Name: StuartS
Date: October 30, 2004 at 12:23:53 Pacific
Reply:

>>I don't mean that the proposed setup for a boot disk will always work <<

True, it wont. It is the inexperienced that is likely to try and come unstuck. But the one created by the OS in question will work, always.

I'm sorry, but using an MS-DOS 6.22 boot disk on anything later than Windows 95 is a disaster waiting to happen.


Stuart


0

Response Number 9
Name: Mechanix2Go
Date: October 30, 2004 at 23:13:35 Pacific
Reply:

Hi Stuart,

If the option to create a boot floppy is there, it's well hidden.

I did a screen shot and if it ever finishes the ftp, it will be at:

www.Golden-Triangle.com/Adrive.jpg

M2


0

Response Number 10
Name: StuartS
Date: October 30, 2004 at 23:39:03 Pacific
Reply:

Your JPG was cut of just below where it says Quick Format.

Under that it also says "Enable Compression" followed by "Create MS-DOS Startup Disk"

Stuart


0

Response Number 11
Name: Mechanix2Go
Date: October 31, 2004 at 01:22:31 Pacific
Reply:

Hi Stuart,

Yes, it was chooped off.

Now it's complete.

http://golden-triangle.com/Adrive.jpg

TY

M2


0

Response Number 12
Name: StuartS
Date: October 31, 2004 at 09:01:43 Pacific
Reply:

Well thats different than any Win XP Floppy disk format dialogue I have ever seen. There should be a third option to create MS-DOS Boot Disk.

Stuart


0

Response Number 13
Name: Mechanix2Go
Date: October 31, 2004 at 09:57:40 Pacific
Reply:

Stuart,

This w2k, which is NT.

And as some here keep harping on, 'there ain't no DOS in NT.'

I assumed it was the same for XP.

M2


0

Response Number 14
Name: StuartS
Date: October 31, 2004 at 10:40:19 Pacific
Reply:

In that case I can only assume that Win2K has something similar to Win NT which allows you to create a recovery disk.

Stuart


0

Response Number 15
Name: Mechanix2Go
Date: October 31, 2004 at 12:06:38 Pacific
Reply:

Hi Stuart,

I think you're right. Somewhere there's an option to make a recovery disk.

Found. It's in backup. [go figure]

I made the disk. Here's what's on it:

18-11-2002 16:44 139,961 setup.log
18-11-2002 16:45 2,584 config.nt
07-12-1999 19:00 438 autoexec.nt

Nary a binary file in sight.

My curiosity is killing me. If there ain't no DOS in XP, how does XP make a DOS boot disk?

Does it ask for a boot floppy like the CD burner does when making a boot CD?

M2


0

Response Number 16
Name: StuartS
Date: October 31, 2004 at 12:30:15 Pacific
Reply:

>> . If there ain't no DOS in XP, how does XP make a DOS boot disk? <<

To make a bootable floppy, only three files are needed. MS-DOS.SYS, IO.SYS and Command.com plus the boot sector. I suspect these files are stored in a library file somewhere.

The boot disk generated by XP is the Windows ME version of DOS.


Stuart


0

Response Number 17
Name: trvlr
Date: October 31, 2004 at 13:13:16 Pacific
Reply:

"How does XP create an msdos boot-disk???"

Perhaps this helps clarify (or confuse) things a little further???

http://www.theeldergeek.com/create_ms-dos_startup_disk.htm

http://www.computerhope.com/boot.htm#71

and scroll to the XP boot-disk section...

As you probably already know...

NT and W2K allow you to make the 3 NT, or 4 W2K bootdisk (i.e. setup disks) accordingly; and also an ERD.

These boot/setup-disks allow you to run a standard install/repair routine. They are not boot-disks in the sense that an msdos boot-disk is referred to.

The ERD is used for repair sequences.

XP doesn't appear to have an ERD equivalent?

M$ (et alii) have a downloadable XP boot/setup-disk images; these (when expanded to the 6 floppies) again allow standard XP set/repair routines.

It is possible for NT/W2K/XP to have a "quick boot-floppy" that "may" allow you to boot a system that may not wish to boot normally, viz:

http://www.xxcopy.com/xxcopy33.htm

There are other sites that discuss/detail this "quick boot-floppy" similarly.

But back to your msdos query... I guess M$ wrote that litle bit into the OS - for old tymes sake; XP being regarded by some as ME with an W2K front end...; it allows a boot to dos (a:) prompt (only)?


0

Response Number 18
Name: StuartS
Date: October 31, 2004 at 14:11:53 Pacific
Reply:

>> XP being regarded by some as ME with an W2K front end <<

Anyone who think's that doesn't know XP.

The ERD system for Windows XP is all on the CD. No need for a separate floppy.

When Windows NT was released, computers that could boot from CD where few and far between. Now computers that cannot boot from CDs are extremely rare, therefore there is no need for a separate boot floppy.


Stuart


0

Response Number 19
Name: Mechanix2Go
Date: October 31, 2004 at 21:17:10 Pacific
Reply:

Thanks Stuart & trvlr.

I thought XP was NT with a pretty face (or a bad haircut, depending on you viewpoint) and a restore 'feature.'

Now I don't know what to think.

Guess I'll install it on a spare drive and check it out.

M2


0

Response Number 20
Name: Jennifer Goettelmann
Date: November 13, 2004 at 15:49:55 Pacific
Reply:

I am new to this forum, hope I am not out of order with my question. Since you are very knowledgeable on the boot disk subject should you create one periodically, you know, kind of like an update? Don't laugh, I'm really green at all of this.


0

Response Number 21
Name: StuartS
Date: November 13, 2004 at 16:43:16 Pacific
Reply:

Jennifer,

With windows XP you don't need a boot disk, everything you need is on the Windows XP CD.

With Windows 98 you create a boot disk and thats it. Just keep it in a safe place for when you need it.

If you are talking about disaster recovery, then thats a different thing and the boot disk is just part of the process - just to get the computer up and running.

With XP you have the "restore" feature, which doesn't always work. In that case there is no substitute for a backup of important data.

The secret there is to keep it simple. You don't want to be involved in complicated restoration procedures when your whole future is hanging by a thread.


Stuart


0

Response Number 22
Name: Jennifer Goettelmann
Date: November 14, 2004 at 09:33:48 Pacific
Reply:

Stuart, thanks for the answer. You mentioned 'recovery'. I was prompted to use my OS disk when installing hardware. All Compaq sent is a recovery disk. My lack of knowledge keeps me from using it. Any help you can give me on this subject would be appreciated or even a learning site I could go to. P.S. If you received a blank message from me I accidentally hit enter to soon. This has not been a good week for me.

Just Jen


0

Response Number 23
Name: StuartS
Date: November 14, 2004 at 10:27:44 Pacific
Reply:

Thats the problem with OEM disks, each manufacturer does things a slightly different way.

Recovery disk normally put the computer back into the state it was on the day you bought it. They should only be needed when there is a catastrophic failure and nothing works. It will do the job, but will have have erased all your data in the process. Consequently keeping backups of important files is a must. Makes things easy for the Support Desk but can cause problems for the user.

If you are prompted for a disk when installing hardware, it will be safe to insert the recovery disk and the installation programme will look for the necessary drivers without going through the recovery process. To initiate the recovery process you need to boot from the CD and that means setting the CD as the first boot device. You computer manual should tell you how to do that.

However, if you are installing hardware that did not come with he computer, then it is unlikely that the recovery disk will contain the necessary drivers. In which case you will have to either use the disk that came with the hardware or download them of the Internet.

Either way, it shouldn't be a problem. Windows XP has a good roll-back feature that allows you to recover from a failed hardware installation without to much hassle.

Good luck

Stuart


0

Sponsored Link
Ads by Google
Reply to Message Icon






Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Windows 95/98 Forum Home


Sponsored links

Ads by Google


Results for: Handy-Dandy Boot Disk

win95 boot disk with Nec 1400a with Cdro www.computing.net/answers/windows-95/win95-boot-disk-with-nec-1400a-with-cdro/115452.html

boot disk www.computing.net/answers/windows-95/boot-disk/113915.html

Humorous begging for Win95 boot disk www.computing.net/answers/windows-95/humorous-begging-for-win95-boot-disk/72781.html