The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    2 entries of windows 7 on boot menu

    Discussion in 'Windows OS and Software' started by Jugzwei, Jan 10, 2009.

  1. Jugzwei

    Jugzwei Notebook Consultant

    Reputations:
    129
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30
    I had windows 7 installed but i decided to make a larger partition so i could play around more. So i formatted the partition and enlarged it and re-installeed windows 7. Now I have 2 entries of Windows 7 and one of Vista.

    Any ideas on how to remove one of the windows 7 entries? :confused:
     
  2. jibberz

    jibberz Notebook Enthusiast

    Reputations:
    27
    Messages:
    40
    Likes Received:
    0
    Trophy Points:
    0
    Try easybcd..

    http://neosmart.net/dl.php?id=1

    It allows you to remove an entry, rename an entry etc etc.. Very ez to use. Make sure u delete the correct entry.
     
  3. Apollo13

    Apollo13 100% 16:10 Screens

    Reputations:
    1,432
    Messages:
    2,578
    Likes Received:
    210
    Trophy Points:
    81
    Yep, jibberz pointed you the right way. That's the best way to do it with Vista (and will be with 7 as well if it uses the same boot system, and I see no reason why it wouldn't).
     
  4. vinumsv

    vinumsv MobileFreak™

    Reputations:
    502
    Messages:
    1,238
    Likes Received:
    0
    Trophy Points:
    55
    if EasyBCD is not compatible then you could try BCDEdit command in Win7

    Just start a CMD with Admin Previlage

    1. Type

    Code:
    bcdedit.exe
    it should display something like this

    Code:
    Windows Boot Manager
    --------------------
    identifier              {bootmgr}
    device                  partition=\Device\HarddiskVolume1
    description             Windows Boot Manager
    locale                  en-US
    inherit                 {globalsettings}
    default                 {default}
    resumeobject            {f91df9c2-df1c-11dd-b1bc-c8fc28aa92c6}
    displayorder            {current}
                            {default}
    toolsdisplayorder       {memdiag}
    timeout                 30
    
    Windows Boot Loader
    -------------------
    identifier              {current}
    device                  partition=C:
    path                    \Windows\system32\winload.exe
    description             Windows 7
    locale                  en-US
    inherit                 {bootloadersettings}
    recoverysequence        {f91df9c4-df1c-11dd-b1bc-c8fc28aa92c6}
    recoveryenabled         Yes
    osdevice                partition=C:
    systemroot              \Windows
    resumeobject            {f91df9c2-df1c-11dd-b1bc-c8fc28aa92c6}
    nx                      OptIn
    
    Windows Boot Loader
    -------------------
    identifier              {default}
    device                  partition=\Device\HarddiskVolume1
    path                    \Windows\system32\winload.exe
    description             Microsoft Windows Vista
    locale                  en-US
    inherit                 {bootloadersettings}
    osdevice                partition=\Device\HarddiskVolume1
    systemroot              \Windows
    resumeobject            {a77450a3-92be-11dd-ac5c-991ff432a142}
    nx                      OptIn
    
    then review and find the duplicate and its resumeobject id . for example if i want to delete windows vista here then my resumeobject id would be {a77450a3-92be-11dd-ac5c-991ff432a142}

    then in the cmd prompt type

    Code:
    bcdedit /delete {a77450a3-92be-11dd-ac5c-991ff432a142} /cleanup 
    this will remove the entry from BCD store and list in the boot menu
     
  5. Jugzwei

    Jugzwei Notebook Consultant

    Reputations:
    129
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30
    ok, ty all i got it now.
     
  6. SpeedyMods

    SpeedyMods Notebook Deity

    Reputations:
    167
    Messages:
    1,336
    Likes Received:
    0
    Trophy Points:
    55
    Erm, open msconfig and change the boot options.

    That seems easier to me. When I was dual booting from my external hard drive I had to go into that to make Vista boot by default.

    Greg
     
  7. Jugzwei

    Jugzwei Notebook Consultant

    Reputations:
    129
    Messages:
    125
    Likes Received:
    0
    Trophy Points:
    30

    thats what i did.