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\'?
Just start foo.exe? You need to add /WAIT to make it pause.
start foo.exe
/WAIT