How to make a batch file fullscreen? [closed]

2019-06-07 04:16发布

问题:

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.

回答1:

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]


回答2:

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)



回答3:

use the start command :

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