我有一个批处理文件,它有助于启动我的rails服务器。当我启动我的批处理文件时,命令提示符正在打开但在这里我需要cmd应该对用户不可见或者它将在windows后执行。我正在解释mt Execute
下面的文件代码。
.bat
请帮帮我。
答案 0 :(得分:0)
您可以使用Vbscript文件以静默方式运行它。 “运行方法”允许您以不可见模式运行脚本。创建一个像这样的.vbs文件:
Option Explicit
Dim MyBatchFile
MyBatchFile = "C:\New Floder\toto 1.bat"
Call Run(MyBatchFile,1,False) 'Showing the console
Call Run(MyBatchFile,0,False) 'Hidding the console
'*********************************************************************************
Function Run(MyBatchFile,Console,bWaitOnReturn)
Dim ws,Result
Set ws = CreateObject("wscript.Shell")
'A value of 0 to hide the MS-DOS console
If Console = 0 Then
Result = ws.run(DblQuote(MyBatchFile),Console,bWaitOnReturn)
If Result = 0 Then
'MsgBox "Success"
Else
MsgBox "An unknown error has occurred!",16,"An unknown error has occurred!"
End If
End If
'A value of 1 to show the MS-DOS console
If Console = 1 Then
Result = ws.run(DblQuote(MyBatchFile),Console,bWaitOnReturn)
If Result = 0 Then
'MsgBox "Success"
Else
MsgBox "An unknown error has occurred!",16,"An unknown error has occurred!"
End If
End If
Run = Result
End Function
'*********************************************************************************
Function DblQuote(Str)
DblQuote = Chr(34) & Str & Chr(34)
End Function
'*********************************************************************************
此示例中的第二个参数设置窗口样式。 0表示“隐藏窗口,1表示”显示窗口“
Run method的完整语法:
object.Run(strCommand, [intWindowStyle], [bWaitOnReturn])
<强>参数:强>
答案 1 :(得分:0)
您可以最小化批处理命令,例如使用:
START /MIN rails server