I have a post-build event that runs some commands for a c# project. The last command would sometimes cause the ERRORLEVEL value not equils to zero and then the build fails.

I want to append an extra line of command to always set the ERRORLEVEL value to zero. What is the most convenient way to do that?

link|improve this question
The build doesn't really fail, only the IDE does look like it. – Dykam Jul 11 '09 at 14:02
feedback

6 Answers

if you use exit /b 0 you can return an errorlevel 0 from within a child batch script without also exiting the parent.

link|improve this answer
feedback

Seems to do the trick:

ver > nul

Not everything works, and it is not clear why. For example, the following do not:

echo. > nul
cls > nul
link|improve this answer
3  
I think the reason of why "echo" and "cls" don't work is because they are the shell built-in commands, not real programs. – user95319 Jul 11 '09 at 13:43
I'll give you that, but where is ver.exe? – binarycoder Jul 11 '09 at 15:28
I can't find "ver.exe" or "ver.com" either. I don't know how to explain that. – user95319 Jul 12 '09 at 13:29
feedback
up vote 5 down vote accepted

I found that "exit 0" looks like a good way to deal with this problem.

Usage Example:

NET STOP UnderDevService /Y

exit 0

if the UnderDevService service is not started.

link|improve this answer
not if you also want to run that batch file from the command line, as exit 0 will close the window. cmd /c "exit /b 0" as suggested below is much more bening – madoki Nov 30 '11 at 9:33
feedback

In a pre- or post-build event, if the return code of an executable is greater than zero, and the call to the executable is not the last line of the pre- or post-build event, a quick way mute it and avoid triggering a check for a non-zero errorlevel is to follow the failing line with a line that explicitly returns zero:

cmd /c "exit /b 0"

This is essentially a generic combination of the previously-mentioned solutions that will work with more than just the last line of a pre- or post-build event.

link|improve this answer
thanks, this worked for me. the easier sounding suggestion of 'exit 0' above doesn't cut it as I wish to continue doing stuff after resetting the errorlevel, not exit – madoki Nov 30 '11 at 9:34
feedback

Add >nul after each command that's likely to fail - this seems to prevent the build from failing.

You can still check the result of the command by examining %errorlevel%.

For example:

findstr "foo" c:\temp.txt>nul & if %errorlevel% EQU 0 (echo found it) else (echo didn't find it)
link|improve this answer
feedback

I use VERIFY or VERIFY > nul

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.