Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该使用哪些参数来启动最小化或隐藏的控制台应用程序?
这可能不使用第 3 方程序吗?
带有批处理文件
start /min c:\windows\cmd.exe
Then you can pass whatever parameters to cmd.exe you need, for example:
To process a command then close:
start /min c:\windows\cmd.exe /c dir
To process a command but stay open:
start /min c:\windows\cmd.exe /k dir