In Windows 7 you have to use a configuration tool for the boot menu. You can no longer just edit the boot.ini file. To do this you need to run "cmd" as administrator.
Use bcdedit /enum to look at the boot list.
C:\Windows\system32>bcdedit /enum
Windows Boot Manager--------------------identifier {bootmgr}device partition=C:description Windows Boot Managerlocale en-USinherit {globalsettings}default {current}resumeobject {7a4f5321-daf0-11de-a4b9-b9516570860e}displayorder {current}toolsdisplayorder {memdiag}timeout 30
Windows Boot Loader-------------------identifier {current}device partition=C:path \Windows\system32\winload.exedescription Windows 7locale en-USinherit {bootloadersettings}recoverysequence {7a4f5323-daf0-11de-a4b9-b9516570860e}recoveryenabled Yesosdevice partition=C:systemroot \Windowsresumeobject {7a4f5321-daf0-11de-a4b9-b9516570860e}nx OptInnumproc 2usefirmwarepcisettings No
Warning! You can seriously mess up your system if you don't know what you are doing here. Do NOT delete {current} or {bootmgr}
Use the identifier property to delete unwanted boot options. In my case I had one that was {ntldr} for my old windows. So I used:
bcdedit /f /delete {ntldr}
Thats all there is to it! Happy booting.
No comments:
Post a Comment