If I'm reading this right to edit the Windows XP
description from "Earlier Version of Windows" to say "Windows XP Home" or to what ever you want. Would be the following
bcdedit /set {ntldr} description "Windows XP Home"
For
bcdedit /displayorder {ntldr} /addfirst
NOTE: This places Windows XP as the first (default) OS on the menu list.
To put back Windows 7 as the (default) OS would be the following
bcdedit /displayorder {current} /addfirst
For Windows XP This is how your OS Loads
When you turn on your computer, it goes through an elaborate startup process. The process begins when your computer performs its power-on self test (POST), which is followed by the POST for each adapter card that has a BIOS, such as SCSI adapters and video cards. The system BIOS then reads the master boot record (MBR)—the first sector on the first hard disk—and transfers control to the code in the MBR, which is created by Windows XP Setup.
This is where Windows takes over the startup process. Here’s what happens next:
1. The MBR reads the boot sector—the first sector of the active partition—which contains code that starts Ntldr, the bootstrap loader for Windows XP. The initial role of Ntldr is to switch the system to protected mode with paging enabled to allow full memory addressing, start the file system, read the Boot.ini file, and display the boot menu. Note that Ntldr must be located in the root folder of the active partition, along with Ntdetect.com, Boot.ini, Bootsect.dos (if you’re going to dual boot), and Ntbootdd.sys (if you’re using certain SCSI adapters for the drive with the boot partition).
2. If you select Windows XP from the boot menu, Ntldr runs Ntdetect.com to gather information about the currently installed hardware. Ntldr then uses the Advanced RISC Computing (ARC) path specified in Boot.ini to find the boot partition—the one where Windows XP is installed—and loads the two files that constitute the Windows XP core: Ntoskrnl.exe and Hal.dll. Both files must be located in the %SystemRoot%\ System32 folder.
3. Ntldr continues by reading the files that make up the registry, selecting a hardware profile and control set, and loading device drivers.
4. At this point, Ntoskrnl.exe takes over and starts Winlogon.exe, which in turn starts Lsass.exe (Local Security Administration), the program that displays the Welcome screen (or the Windows logon dialog box) and allows you to log on with your user name and password.
Please Rep!