1.

Solve : Font size in CMD?

Answer»

i KNOW color and mode change the color and size of the command prompt when used like from a batch file but is there a way to change the font size?use the propertites settings?But that changes the command prompt box for ever until someone changes it backQuote

But that changes the command prompt box for ever until someone changes it back
Do you mean forever in a SINGLE session? If not you could just click "Apply properties to current window only", but you probably want a font command I think. Is there one... I don't know.
Quote
i know color and mode change the color and size of the command prompt when used like from a batch file but is there a way to change the font size?
i can give you an idea. you have to code on your own.
It uses the registry key at HLCU\console. You can FIND the key called "FontSize" . Then you can either export this key to a reg file. Then you can change the size load it USING some scripting registry tool such as reg.exe or regedit, or you can directly modify this key through that scripting tool. eg using registry editor and a reg file (have to change the Fontsize inside this file as desired).
Code: [Select]regedit /s FontSize.reg

or through direct
Code: [Select]C:\>reg /f delete HKCU\Console\%SystemRoot%_system32_cmd.exe\FontSize
C:\> reg add /?
If you not confident , don't try this.


Discussion

No Comment Found