I want to make a batch file that when it opens it goes fullscreen, or if that is not possible at least be a bit bigger than it's default.
- 1On which OS? Secondly this doesn't sounds like a programming question.kenorb– kenorb2014-10-29 11:05:42 +00:00Commented Oct 29, 2014 at 11:05
- 1Windows and this has got to do with batch PROGRAMMING so I think it qualifies as a programming questionCool841– Cool8412014-10-30 07:57:24 +00:00Commented Oct 30, 2014 at 7:57
Add a comment |
3 Answers
Try this
mode con lines=32766 This will change the buffer-size and also will make it full screen in terms of heights.
You can use the following
mode con: cols=[YourValue] lines=[YourValue] Create a shortcut.
Go to Properties and adjust the size, colour, layout and other things...
Or do you mean when it runs...??
So..
mode con: cols=100 lines=40 doesn't work for you? Does for me (Win7)
1 Comment
Cool841
I meant when it runs. I would like it to be a downloadable game. Thanks anyway!
use the start command :
start "" /MAX "cmd /K c:\temp\test.bat" 1 Comment
Cool841
I have tried that it still doesn't work sadly. Thanks though.