How to make a batch file fullscreen? [closed]

隐身守侯 提交于 2019-12-08 03:56:14

问题


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"


来源:https://stackoverflow.com/questions/26626068/how-to-make-a-batch-file-fullscreen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!