开发者

Invoke EXE from batch file *without* waiting

开发者 https://www.devze.com 2022-12-10 07:43 出处:网络
How do I invoke an EXE from a batch file without having the latter wa开发者_JAVA技巧iting for the EXE to finish? Something like the Cygwin \'cygstart\'?Use \"start\".Type \"start /?\" at a command pro

How do I invoke an EXE from a batch file without having the latter wa开发者_JAVA技巧iting for the EXE to finish? Something like the Cygwin 'cygstart'?


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


put START /B before the command you want to run


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

0

精彩评论

暂无评论...
验证码 换一张
取 消