Can you dynamically resize Windows Command Line window?
Windows Command Line window has a fixed size. You can change it, but not on-the-fly, with a mouse.
But maybe it's just me or my system (Windows 7).
Can you dynamically resize Windows Command Line window?
Solution 1:
In windows 7 use the mode command.
mode con:cols=80 lines=40
Solution 2:
This is done via the Properties > Layout tab
of the window or the shortcut.
Detailed instructions - How to Make the Windows Command Prompt Wider
Solution 3:
You can change the screen buffer size in the Layout tab of the Preferences dialog (click on the icon in the top left corner of the window to get to the menu). Making the screen buffer bigger will allow you to then change the window size.
If you do this though, the text will extend past the window and you will have to scroll to see it. There is no way to dynamically change the screen buffer size like you want AFAIK.
Solution 4:
As other users have pointed out: it is impossible with standard cmd
. You can only adjust the window size via parameters.
I found an extension to cmd
called Console.
http://sourceforge.net/projects/console/?source=navbar
You just install/extract it and make it visible in the PATH
.
Console enables you to resize the window, set transparency, use tabs etc. etc. Very useful!
edit: a new project called cmder has emerged recently: https://github.com/cmderdev/cmder
It looks VERY promissing!!