有谁知道如何在Windows 3.11中运行批处理脚本时最小化命令提示符?
在Windows XP中,有一个命令
start /min start.bat
为了最小化cmd提示,MSDos 6.22中是否有类似的命令?
最佳答案
这个小的批处理代码应该可以满足您的需求。
http://zoombody.com/articles/run-a-batch-script-minimized
然后,相关的代码需要放在脚本的顶部:
if not "%minimized%"=="" goto :minimized
set minimized=true
start /min cmd /C "%~dpnx0"
goto :EOF
:minimized
rem Anything after here will run in a minimized window
这是有关
"%~dpnx0"
的more information。