Getting ROBOCOPY to return a "proper" exit code?
- by Lasse V. Karlsen
Is it possible to ask ROBOCOPY to exit with an exit code that indicates success or failure?
I am using ROBOCOPY as part of my TeamCity build configurations, and having to add a step to just silence the exit code from ROBOCOPY seems silly to me.
Basically, I have added this:
EXIT /B 0
to the script that is being run.
However, this of course…