Invoke EXE from batch file *without* waiting

后端 未结 3 1398
醉话见心
醉话见心 2020-12-17 07:48

How do I invoke an EXE from a batch file without having the latter waiting for the EXE to finish? Something like the Cygwin \'cygstart\'?

相关标签:
3条回答
  • 2020-12-17 08:25

    Use "start". Type "start /?" at a command prompt.

    0 讨论(0)
  • 2020-12-17 08:28

    Just start foo.exe? You need to add /WAIT to make it pause.

    0 讨论(0)
  • 2020-12-17 08:45

    put START /B before the command you want to run

    0 讨论(0)
提交回复
热议问题