I have a batch file, which exists as soon as start it (run as admin) and does not execute commands that are in it, but if I specify it at the command-line, it runs fine and executes all commands.

Here's what's in it:

start /wait msiexec /x SetupServices.msi /qn /l* "SetupServices.uninstall.log"

start /wait msiexec /i SetupServices.msi /qn /l* "SetupServices.install.log"

link|improve this question

67% accept rate
feedback

2 Answers

Try taking the start /wait out for the msiexec lines, if that doesn't work create two more bat files one called uninstall.bat the other install.bat and use call to execute them in series.

link|improve this answer
I can do that, but shouldn't there be a more straightforward approach? :-) – Ostati Aug 4 '11 at 18:48
feedback

Add pause statement to the end of the batch, this will prevent the console window from closing and you will be able to see error messages if any. Errors could be the reason why it exits without actually running anything. What kind of error it may be? SetupServices.msi is not found — that's what comes to my mind.

link|improve this answer
I did that before but that doesn't change anything... :( – Ostati Aug 4 '11 at 23:13
@Ostati You do not see any errors? Also try to analyze %ERRORLEVEL% environment variable in your batch, adding echo %ERRORLEVEL% should be enough: 0 means success, other exit code means failure, there's a list of msiexec return codes. – Alexey Ivanov Aug 5 '11 at 6:28
feedback

Your Answer

 
or
required, but never shown

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