Rather than playing the F8 game on startup, is there a way (command line etc.) of configuring windows so that shutting down Window and rebooting will always come up with the advanced boot menu or alternatively is there a way of shutting down windows so that it will always come up with the Windows Recovery environment. I'm thinking of some kind of command line tool which sets a registry setting or somesuch so that on reboot Windows kicks into the advanced boot menu.
If neither of these are possible how can I add the Windows Recovery environment (WinRE) to the boot menu - can this be done with BCDEdit or Easy BCD?
This is with Windows 7 64 bit by the way.
Thanks,
Matthew.
First, make a backup of your current BCD with
bcdedit -export backup_file.bcd
. If you have BitLocker enabled on your boot drive, it needs to be disabled until after your done changing things.If you just want the menu to show:
bcdedit /delete {bootmgr} default
Booting the computer has nothing to do with the registry, only the BCD controls the boot process.
Adding WinRE is a bit involved; is there something specific you're looking for, or you just want the whole environment?
Edit:
To install WinRE (the easy way):
run these to add WinRE to your BCD:
You now have the ramdisk options in place.
Note the GUID it gives you as you'll need it for the next several lines:
This is almost all from memory; so it's possible I forgot something. I don't know of any easy way to make booting into WinRE a one-shot deal.