Selecting Different Fonts In the Command Prompt Window
I'm working on a side project that makes creating Wordpress themes easier and therefore makes me happier. It's almost ready, but while I procrastinate on putting the finishing touches on the application, let's talk about seeing your command prompt in a completely different light font. Lucida Console is an okay font, but the thing is there are better fonts out there. Turns out that it's really easy to change the default font of the command prompt; though you might get a bad case of jitters at touching the registry. ;-)
1. Open up the registery
Go to Start > Run and type in regedit. This opens up the registery editor. Before doing any changes, we'll be sane and backup our registery. Go to File > Export and give your registery backup an appropriate name. Hopefully, we won't have to use it.
2. Navigate to the Appropriate Entry
Once you're done backuping the registery, navigate to:
HKLM Software Microsoft WindowsNT CurrentVersion Console TrueTypeFont
Where HKLM = "HKEYLOCALMACHINE."
3. Create a new REG_SZ Key
Right-click on the right pane and select New > String Value. Give the new key the name: "00" (or "000" if you already have a "00," and so on...). Microsoft says:
The name needs to be incrimented with "0" for each additional font.
4. Enter the font name
Right-click on your newly-created key and select "Modify". Type in the name of the font you want in the "Value data" box. So for example, if you want the Consolas font, type in "Consolas" (without the quotation marks, of course).
Read the aforementioned Microsoft article on what criteria your fonts should satisfy.
5. Set Your Font as the Default Font
Hopefully, you were able to boot up without a problem. Go to the command prompt. Right-click on the title bar and select "Defaults". Go to the "Font" tab. Select your new font in the "Font" section and set the size appropriately. :D
Extra: Set Font For the Current Window Only
Right-click on the title bar and select "Properties" instead of "Defaults". Set the font to whatever and click OK. You'll be asked whether you want to set it for the current window only or save it for all future windows with the same title.


