You can just update bcdedit to show both installations at boot time.
Like this:
Code:
Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path \Windows\system32\winload.exe
description Windows 7 Beta 32bit Build 7000
locale en-US
inherit {bootloadersettings}
osdevice partition=C:
systemroot \Windows
resumeobject {d22b5cc4-c693-11dd-b04b-ebb59894af39}
nx OptIn
numproc 2
usefirmwarepcisettings No
Windows Boot Loader
-------------------
identifier {ddab5cc4-cd93-13dd-c04b-fbb59894af39}
device partition=D:
path \Windows\system32\winload.exe
description Windows 7 Beta 64bit Build 7000
locale en-US
inherit {bootloadersettings}
osdevice partition=D:
systemroot \Windows
resumeobject {d22b5cc5-c694-d3dd-b04b-ebb59894af39}
nx OptIn
numproc 2
usefirmwarepcisettings No To do that, do the following... 1. In 64 bit version, locate what drive letter has your win732bit partition. (e.g. D: ) 2. In 64 bit version, open cmd with administrative rights (
elevated command prompt)
3. In command prompt, type:
bcdedit /copy {current} /d "Windows 7 32bit"
this will copy your existing boot settings to a new entry.
when you do that, you will get a line like:
The entry was successfully copied to {d22b5cdb-c693-11dd-b04b-ebb59894af39}.
this
{d22b5cdb-c693-11dd-b04b-ebb59894af39} is your new identifier...you will use it below: 4. bcdedit /set {your_new_identifier_as_given_with_command_above_including_brackets}
device partition=D:
(or any drive you 32bit Windows 7 is )
5. bcdedit /set {your_new_identifier_as_given_with_command_above_including_brackets}
osdevice partition=D:
(or any drive you 32bit Windows 7 is )
6. Reboot and enjoy A complete example:
C:\Users>bcdedit /copy {current} /d "Windows 7 32bit"
The entry was successfully copied to {d22b5cdd-c693-11dd-b04b-ebb59894af39}.
C:\Users>bcdedit /set {d22b5cdd-c693-11dd-b04b-ebb59894af39} device partition=d:
The operation completed successfully.
C:\Users>bcdedit /set {d22b5cdd-c693-11dd-b04b-ebb59894af39} osdevice partition=d:
The operation completed successfully.
C:\Users>
I hope it helps