Is there a way to do just a simple rename within Windows? I'd rather not have to install an extra program I will never use other than to rename an entry in the boot manager.
Yes Fusion
There Is'
Go to "Start" menu and click in the search box (at the bottom of the list) and type "cmd", it will show up on the top of the menu, right click it and "Run As administrator", then the command box opens just type "bcdedit" (no quotes " ).
This will show you the existing settings.
First, I would suggest you save a copy (in case you goof).
Type "bcdedit /export C:\SAVEDBCD", this will save you the initial copy on the C: drive at the root.
Now I am going to give you a copy of the changes I make.
Code:
bcdedit /set {ntldr} description "LastXP & WinXP x64"
bcdedit /set {bootmgr} timeout "10"
bcdedit /set {bootmgr} displayorder {ntldr} {current}
bcdedit /set {bootmgr} default {ntldr}
bcdedit /set {current} description "Win 7 x64"
A couple of Quick answers.
{ntldr} is your
"Earlier version of windows"
{ntldr}
description "LastXP & WinXP x64" is the name, "
LastXP & WinXP x64" is the names of My Earlier version of windows ( 2 of them), also, the quotes are only used in the naming settings, including the timeout settings.
{bootmgr} is the BOOT.ini replacement from Vista on up, (Win 7 & Server2008)
timeout "10", is the time delay you get to select other than the main Highlited.
{current} description "Win 7 x64", is the Win 7 version (or Vista or Server 2008, if you are using them during changes).
you can copy these to a Notepad page and save it as your "bcdedit mod.txt", then you can make the name changes you like("LastXP & WinXP x64" to "My Old XP"). Note* dont forget to use the " " quotes only in the naming.
For more info you can go
here and read a lot more.
Question?? Do you know how to use the "copy & paste" in the command window??
Answer. "copy" the line you want from your notepad and then "Right click" on the title bar of your "Command Window", move down the menu to "Edit >" and you will see "Paste", click, then just hit enter key and you get the action and a response.