1

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.

2
  • 1
    On which OS? Secondly this doesn't sounds like a programming question. Commented Oct 29, 2014 at 11:05
  • 1
    Windows and this has got to do with batch PROGRAMMING so I think it qualifies as a programming question Commented Oct 30, 2014 at 7:57

3 Answers 3

3

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] 
Sign up to request clarification or add additional context in comments.

3 Comments

Thanks could you please explain the actual command, like, what does lines mean and con? Thanks!
For example you can set mode con: cols=340 lines=140
I am not sure about the full form of con, but it could be Sort form of Console
1

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

I meant when it runs. I would like it to be a downloadable game. Thanks anyway!
0

use the start command :

start "" /MAX "cmd /K c:\temp\test.bat" 

1 Comment

I have tried that it still doesn't work sadly. Thanks though.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.