There are two files that play major role in boot-up process of your windows pc.
- NTLDR
- Boot.ini
But there is one little problem as boot.ini doesnt take into account the frequency with which you use a perticular operating system, it lists operating systems starting from last installed.Now if you just switch ON the pc then boot.ini will highlight that particular operating system(XP64 in my case) and wait for for 30 seconds, with countdown showing you how long you have got to make a choice from the menu. After the 30 seconds it boots into that operating system and leaves you cursing.So with two operating systems on your pc you have no choice but to wait till boot.ini appears and asks you select your preferred operating system or you have to restart (and/or curse).
So how to fix this issue?
Simple. As windows is designed to be extreme user friendly(though it doesnt come that way by default) you can easily edit boot.ini file to change the list order.
Just follow these simple steps:
- Where to find?
Select "Advanced" tab.
Select "system start-up and recovery"(last one) and click "settings"
Now you will see some highlighted text and "Edit" button below that.
Click "Edit"
you are done.Now to set/change the priority you will have to edit this file.
Word of Caution:
Before editing just copy all the contents and paste in notepad and save with easily recallable name as back up measure in case you screw up. If you do just copy and again paste it at original location.
- Editing Files
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(2)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP media center
Edition" /fastdetect
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Windows XP64 Professional" /fastdetect
This file contains two sections
- boot loader :
- Time out: this specifies the countdown time.You can just increase or decrease by entering some value like 20 or 40 . Now if all you want is the menu to stay until you make a choice then enter "-1" (without quotes of course!).
- default :specifies which operating system is used as default and you can easily change that. e.g if i want media center to boot then i'll just enter "1" instead of "2" default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
- operating systems: this specifies the operating systems that are present on your machine. "multi(0)disk(0)rdisk(0)partition(1) " the thing we are interested in is the last one .
- The "partition(x)" value specifies the number of the partition on which a particular operating system is installed.
Now you are wondering (may be) why i have used red color for "fastdetect".
If you are interested then read on:
- fastdetect is one of many switches that are used to customize boot.ini file. This particular switch helps windows to boot faster by disabling detection of parallel and serial devices.
- If you want to see what happens behind splash screen then just erase "fastdetect" and put "SOS" instead.
- And you will see windows loading all the drivers and checking you disks instead of that pathetic progress indicator.
No comments :
Post a Comment