How to make a batch file fullscreen? [closed]

2019-06-07 04:11发布

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.

3条回答
萌系小妹纸
2楼-- · 2019-06-07 04:27

use the start command :

start "" /MAX "cmd /K c:\temp\test.bat"
查看更多
聊天终结者
3楼-- · 2019-06-07 04:38

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]
查看更多
甜甜的少女心
4楼-- · 2019-06-07 04:44

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)

查看更多
登录 后发表回答