6

Is there a way to change default screen buffer size (count of scrollable lines before they become unavailable) for all console applications in Windows? Registry key or something. I don't want to set it for every console app I develop.

Regards,

noober
  • 4,819
  • 12
  • 49
  • 85
  • 1
    You can do this easily through the properties of the console window. Are you asking how to do this through a program? I would discourage this, changing someone's global settings just to suit your own program is pure evil. – Mark Ransom Sep 12 '11 at 17:48
  • this is a superuser question, the answer is what mark said – David Heffernan Sep 12 '11 at 17:54

2 Answers2

5
 HKEY_CURRENT_USER\Console\

There is a bunch of keys in there you can adjust.

apollosoftware.org
  • 12,161
  • 4
  • 48
  • 69
1

See http://commandwindows.com/configure.htm or How to change Screen buffer size in Windows Command Prompt from batch script

Community
  • 1
  • 1
nmc
  • 8,724
  • 5
  • 36
  • 68