Reputation: 3918
Quick and simple question: I have a batch file that calls for some .exe like so:
START /WAIT GVE %opt%
My problem is that the program starts in a new console, is their anyway to make it start in the same console ? I've tried /NOCONSOLE option without success.
Thanks
Upvotes: 2
Views: 1303
Reputation: 130819
I think you just need the /B
option (assuming the exe is a console app)
start "" /b /wait gve %opt%
Upvotes: 2