changing boot names in dual boot situation

  • Thread starter Thread starter jbclem
  • Start date Start date
J

jbclem

I have two instances of Win2000 on my computer, so when I boot up there is a
screen where I can pick one of them. Since they both have the exact same
name I'd like to change one of the names to make it easier to identify each
one. How can I do this?

jc
 
jbclem said:
I have two instances of Win2000 on my computer, so when I boot up there is a
screen where I can pick one of them. Since they both have the exact same
name I'd like to change one of the names to make it easier to identify each
one. How can I do this?

jc
- Click Start / Run / notepad c:\boot.ini {OK}
- Modify the desciption(s) between the double quotes.
- Save & exit.
 
Edit the boot.ini file. The file is a hidden read-only system file in
the root of the System drive, usually C:\. At a Command Prompt issue:

attrib c:\boot.ini -s -r -h

Then to open the file issue:

C:\boot.ini

Notepad will open the file, edit the descriptive text exit and save the
file. Then issue:

attrib c:\boot.ini +r +s +h


The file looks like this:

[boot loader]
timeout=15
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000
Professional" /fastdetect
multi(0)disk(0)rdisk(1)partition(1)\WINNT="Windows 2000 Server" /fastdetect

The Descriptive text _BETWEEN_ the quotation marks is what you want to
edit, "Microsoft Windows 2000 Professional" DON'T change anything
outside of the quotation marks.

John
 

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

Similar Threads

Dual boot 3
How to remove OS choices from ex-dual boot system? 18
Try Again - Dual boot 5
Primary OS - Dual Boot 3
Dual boot? 5
Inaccessible boot device issue 3
W2K SP4 dual boot problems 12
Dual Boot Problem 7

Back
Top