Relocating Windows 7 Boot Manager

Diquefiche

New member
Local time
12:16 AM
Messages
1
Hi All,

I am using a PC that originally had Vista installed on it. I then added a separate hard drive to try out Windows 7 a while back and love it.

So I would like to re-allocate the original Vista drive to something else ( or even move it out to a different system )..

But alas.. the bootloader..

Windows Boot Manager
--------------------
identifier {9dea862c-5cdd-4e70-acc1-f32b344d4795}
device partition=D:
description Windows Boot Manager
locale en-US
inherit {7ea2e1ac-2e61-4728-aaa3-896d9d0a9f0e}
default {87193801-a8b7-11de-b9c0-ed3737667c69}
resumeobject {87193800-a8b7-11de-b9c0-ed3737667c69}
displayorder {87193801-a8b7-11de-b9c0-ed3737667c69}
{318cb2f8-ab6a-11dd-bb33-d4d370134381}
{e7b34b3a-a6a1-11dd-8126-9cb7c9586565}
toolsdisplayorder {b2721d73-1db4-4c62-bf78-c548a880142d}
timeout 30
Windows Boot Loader
-------------------
identifier {87193801-a8b7-11de-b9c0-ed3737667c69}
device partition=C:
path \Windows\system32\winload.exe
description Windows 7
locale en-US
inherit {6efb52bf-1766-41db-a6b3-0ee5eff72bd7}
recoverysequence {87193802-a8b7-11de-b9c0-ed3737667c69}
recoveryenabled Yes
osdevice partition=C:
systemroot \Windows
resumeobject {87193800-a8b7-11de-b9c0-ed3737667c69}
nx OptIn
Windows Boot Loader
-------------------
identifier {318cb2f8-ab6a-11dd-bb33-d4d370134381}
device partition=D:
path \Windows\system32\winload.exe
description Microsoft Windows Vista
locale en-US
inherit {6efb52bf-1766-41db-a6b3-0ee5eff72bd7}
osdevice partition=D:
systemroot \Windows
resumeobject {318cb2f9-ab6a-11dd-bb33-d4d370134381}
nx OptIn

As you see, the new drive with Windows 7 is C, and Bootloader with Vista are on D.

How can I make my existing C drive stand alone so that I could remove D and the system continues to boot ?

Win 7 had been operational now for 4 months with tons of software. Dont really want to reinstall :(..

Thanks !!!
 

My Computer

OS
Win 7 Ultra
Please post back a screenshot of your full Disk Management drive map, using the SNipping tool in Start Menu, attach file using paper clip in reply box.

Then we can give you the exact steps to remove Vista and recover it's space and MBR into Win7.
 
I think this logic should do the trick:

Copy bootmgr, bootsect.bak and boot-directory’s files from d: to c:

bcdedit /export c:\Boot\BCD
bcdedit /store c:\Boot\BCD /set {9dea862c-5cdd-4e70-acc1-f32b344d4795} device partition=c:
bcdedit /store c:\Boot\BCD /set {b2721d73-1db4-4c62-bf78-c548a880142d} device partition=c:
bcdedit /store c:\Boot\BCD /set {466f5a88-0af2-4f76-9038-095b170dc21c} device partition=c:


From the Windows 7 dvd
Windows7DVD:\BOOT\BOOTSECT /NT60 c: /FORCE

Set HD0 partition 1 active:
DISKPART
select disk 0
select partition 1
active


Finally remove Vista from the loader:

bcdedit /delete {318cb2f8-ab6a-11dd-bb33-d4d370134381} /cleanup
 
Last edited:

My Computer

OS
WIN 7 x64
Back
Top