how i can execute windows command line in background

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You're after start!

start /B <yourcommandhere>

/B Start application without creating a new window. The application has ^C handling ignored. Unless the application enables ^C processing, ^Break is the only way to interrupt the application.

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.