1

我正在编写一个将启动 Apache 并http://localhost在 Web 浏览器中打开的批处理文件。最简单的形式:

@start apache\bin\httpd.exe
@start http://localhost

这会导致批处理文件运行 Apache、打开网页并退出。但是,它会httpd.exe在自己的终端窗口中打开,而不是在后台隐藏打开。如何在没有可见窗口的情况下打开它?

4

2 回答 2

6

尝试这个:

@start /b "" apache\bin\httpd.exe
于 2013-03-25T06:09:45.660 回答
0

在另一个网站上看到这个。它可能会起作用。

在后台启动它:

command &

然后运行:

disown

并关闭终端。

您可以使用 Ctrl+z 停止前台应用程序,然后使用 bg (fg) 命令在后台(前台)启动它。

于 2013-03-24T23:40:56.253 回答