当前位置:  开发笔记 > 编程语言 > 正文

如何在程序启动后不打开控制台的情况下从批处理文件中运行程序?

如何解决《如何在程序启动后不打开控制台的情况下从批处理文件中运行程序?》经验,为你挑选了7个好方法。

目前我的批处理文件如下所示:

myprogram.exe param1

程序启动但DOS窗口仍然打开.我怎么能关闭它?



1> 小智..:

使用start命令可以防止批处理文件等待程序.只需记住在"开始"之后在要运行的程序前放置一个空的双引号.例如,如果要从批处理命令运行Visual Studio 2012:

Start ""  "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe"

开始后注意双引号.


@SharkAlley正确的格式是`start `
这是正确的答案.谢谢,空双引号正是我所需要的.

2> Patrick Desj..:

您可以使用exit关键字.以下是我的一个批处理文件中的示例:

start myProgram.exe param1
exit


我在Win8中尝试了这个命令.我不确定它是否不同,但请注意,您必须为它提供一个Window标题作为您的第一个参数.当我按照帕特里克描述的方式运行它时,它将打开一个新的命令提示符,其中"myProgram.exe"作为窗口标题:`start"VPN""C:\ Program Files(x86)\ Cisco\Cisco AnyConnect安全移动性客户端\ vpnui.exe"`
请注意,如果您以交互方式使用控制台而不是双击批处理文件,这将不会很好.通常几乎不需要将`exit`放入批处理文件中.
请注意,如果您的命令包含空格并将其放入引号,则必须在其前面添加一个额外的带引号参数,因为START将第一个引用的参数解释为窗口名称,并将下面的第二个参数解释为命令名称.

3> angry person..:

查看START命令,您可以这样做:

START rest-of-your-program-name

例如,此批处理文件将一直等到记事本退出:

@echo off
notepad c:\test.txt

但是,这不会:

@echo off
start notepad c:\test.txt



4> VonC..:

从我自己的问题:

start /b myProgram.exe params...

如果从现有DOS会话启动程序,则有效.

如果没有,请调用vb脚本

wscript.exe invis.vbs myProgram.exe %*

在Windows脚本宿主Run()方法需要:

intWindowStyle:0表示"隐形窗口"

bWaitOnReturn:false表示您的第一个脚本不需要等待第二个脚本完成

这是invis.vbs:

set args = WScript.Arguments
num = args.Count

if num = 0 then
    WScript.Echo "Usage: [CScript | WScript] invis.vbs aScript.bat "
    WScript.Quit 1
end if

sargs = ""
if num > 1 then
    sargs = " "
    for k = 1 to num - 1
        anArg = args.Item(k)
        sargs = sargs & anArg & " "
    next
end if

Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.Run """" & WScript.Arguments(0) & """" & sargs, 0, False



5> Zosimas..:

当我尝试从批处理文件中运行java类时,这是唯一有用的东西:

start "cmdWindowTitle" /B "javaw" -cp . testprojectpak.MainForm

您可以start按照正确的语法自定义项目所需的命令:

Syntax
      START "title" [/Dpath] [options] "command" [parameters]

Key:
   title      : Text for the CMD window title bar (required)
   path       : Starting directory
   command    : The command, batch file or executable program to run
   parameters : The parameters passed to the command

Options:
   /MIN       : Minimized
   /MAX       : Maximized
   /WAIT      : Start application and wait for it to terminate
   /LOW       : Use IDLE priority class
   /NORMAL    : Use NORMAL priority class
   /HIGH      : Use HIGH priority class
   /REALTIME  : Use REALTIME priority class

   /B         : Start application without creating a new window. In this case
                ^C will be ignored - leaving ^Break as the only way to 
                interrupt the application
   /I         : Ignore any changes to the current environment.

   Options for 16-bit WINDOWS programs only

   /SEPARATE   Start in separate memory space (more robust)
   /SHARED     Start in shared memory space (default)



6> Chris Dail..:

你应该试试这个.它启动程序没有窗口.它实际上闪烁了一秒钟,但相当快地消失了.

start "name" /B myprogram.exe param1


"标题"选项很重要.如果程序的路径包含空格,则必须用引号括起来,因此我们必须添加"标题"以避免失败.

7> Gilco..:

如何解决"空间问题"和本地依赖关系:

@echo off
cd "C:\Program Files\HeidiSQL"
start heidisql.exe

cd "C:\Program Files (x86)\Google\Chrome\Application"
start chrome.exe

exit


是的,但我认为它提供了一个很好的解决方案,可以解决我遇到的其他问题.
是我的解决方案.Dos窗口打开但再次关闭,解决方案正常工作.我不理解downvotes(我upvoted)
推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有