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"