vote up 3 vote down star
1

I am in the process of setting up Cruise Control.NET. The problem I am having is that I am running CC as a console application and when my build completes successfully and executes (using exec) it launches it within the Cruise Control dos prompt. I am just using simple batch files to launch my app but having it run within the same prompt as CC is causing CC to think the build continues as long as my app runs.

Are there command line parameters to cmd.exe that will spawn another seperate prompt window ?

Thanks

flag

3 Answers

vote up 7 vote down check

I think this works:

start cmd.exe

link|flag
make sure you check out all the different options for start "start /?" /wait and /I can be usefull. – Peter Gfader Dec 20 '08 at 23:43
vote up 4 vote down
start cmd.exe

opens a separate window

start file.cmd

opens the batch file and executes it is another command prompt

link|flag
vote up 0 vote down

start cmd.exe works, thanks.

link|flag
you are welcome :) – eJames Nov 19 '08 at 23:51
Fastest support I have ever received. – Mark Stahler Nov 19 '08 at 23:53
Bugger... I was too slow with my answer :( – BlackMael Nov 19 '08 at 23:56
I caught that one right when it came on the list :) – eJames Nov 19 '08 at 23:59

Your Answer

Get an OpenID
or

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