News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

How to make Windows NT, Windows 95, and MS-DOS co-exist in NT's boot manager

Started by charleychacko, October 15, 2006, 12:03:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

charleychacko

If you have MS-DOS, Windows 95, and Windows NT on your computer, more than likely your NT boot manager only shows two entries: one to boot to Windows NT and another to boot to Windows 95. In order to boot to DOS, you have to select Windows 95 and then select MS-DOS. If you have a few minutes to spare, here's something you can try to get MS-DOS (and Windows 95) listed in your NT boot manager:
First, go to the root of your boot drive and issue the following command:

attrib -r -h -s boot.ini

If you didn't have Windows 95 (just NT and DOS) you could have just added the following line to boot.ini to make MS-DOS appear in your NT boot manager:

C:\BOOTSECT.DOS="MS-DOS"

But, since you have 95 installed, you'd have to take few more steps:

Rename BOOTSECT.DOS to BOOTSECT.W95

attrib -r -h -s bootsect.dos
copy bootsect.dos *.w95

Run NT setup and choose to repair NT boot files and exit.

Go back to the root of your boot drive and rename the newly created BOOTSECT.DOS to something else, so that it won't get overwritten during the next installation, update, repair, etc.

attrib -r -h -s bootsect.dos
copy bootsect.dos *.MSD

Finally, add Win95 (if you don't already have it listed) and DOS to your NT boot manager:

attrib -r -h -s boot.ini

Once you execute the above command, add following two lines to boot.ini:

c:\bootsect.w95="Microsoft Windows 95"
c:\bootsect.msd="Microsoft DOS"