i have a bat file that has the following it:

sm start "Schedule"

this code runs but the command window closes immediately

what can i put inside the bat file to keep the window open?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Just put the command pause in the batch file at the end.

link|improve this answer
feedback

Or you can run it with cmd /k mybatfile.bat instead of cmd mybatfile.bat. Very useful if you can't edit the file or want to invoke a quick command from Run. F.e.: cmd /k ipconfig

link|improve this answer
feedback

I don't know what "sm" or "Schedule" are. But if "start" is cmd.exe's integrated start command, you may be looking for:

sm start /wait "Schedule"
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.