I would like to run program from windows console(cmd.exe) and close console after that. now when i do it the console stays opened as long as the program is running.

I would like it to start program, close console and use program.

I double click the batch

@c:\somedir\app.exe
link|improve this question

Can you please be more specific? From which context you will launch the console or the program? Can you explain the phrase "I would like it to start program, close console and use program."? Can a batch file be used to launch the program without opening the console beforehand? – Sga Nov 16 '11 at 9:47
@Sga I added more information – IAdapter Nov 16 '11 at 12:29
"start" in batch file is the solution, have you tried it? – Sga Nov 16 '11 at 15:56
feedback

2 Answers

Use start

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

Example: start /B "Test" program.exe

http://ss64.com/nt/start.html

link|improve this answer
feedback

I'm not running Windows right now so I can't try it out, but have you looked into start? You can find more information here.

Another option might be call.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.