0

我应该使用哪些参数来启动最小化或隐藏的控制台应用程序?

这可能不使用第 3 方程序吗?

带有批处理文件

4

1 回答 1

6
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
于 2009-05-03T22:07:27.923 回答