vote up 2 vote down star

I'm trying to write a Windows cmd script to perform several tasks in series. However, it always stops after the first command in the script.

The command it stops after is a maven build (not sure if that's relevant).

How do I make it carry on and run each task in turn please?

Installing any software or configuring the registry etc is completely out of the question - it has to work on a vanilla Windows XP installation I'm afraid.

Ideally I'd like the script to abort if any of the commands failed, but that's a "nice to have", not essential.

Thanks.

flag

5 Answers

vote up 7 vote down check

When you call another .bat file, I think you need "call" in front of the call:

call otherCommand.bat
link|flag
Hi, in the original script I wasn't calling other .cmd files, but I have since split it into separate files so I could run each in turn. So, putting call in front of each command seems to have done the trick, thanks! – Darren Greaves Oct 13 '08 at 15:48
vote up 4 vote down

You can use the && symbol between commands to execute the second command only if the first succeeds. More info here http://commandwindows.com/command1.htm

link|flag
Thanks, I'll give that a try in conjunction with the accepted answer above. – Darren Greaves Oct 13 '08 at 15:49
vote up 1 vote down

Can you post the script?

link|flag
vote up 1 vote down

Not sure why the first command is stopping. If you can make it parallel, you can try something like

start cmd.exe /C 1.bat      
start cmd.exe /C 2.bat
link|flag
vote up 0 vote down

I don't know the direct answer to your question, but if you do a lot of these scripts, it might be worth learning a more powerful language like perl. Free implementations exist for Windows (e.g. activestate, cygwin). I've found it worth the initial effort for my own tasks.

link|flag
Thanks but I am unable to install any software. I wish I had access to something more powerful than the crappy Windows scripting language. :-( – Darren Greaves Oct 13 '08 at 15:34
You can always use vbscript or javascript. They're built into the Windows scripting host. – Ferruccio Oct 13 '08 at 15:42

Your Answer

Get an OpenID
or

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