Top "Exit-code" questions

An exit code is signaled by a program on termination to indicate if it completed successfully, or, if it did not, what sort of failure condition occurred.

Run MsiExec from PowerShell and get Return Code

With BAT/CMD script I can simply use "msiexec /i <whatever.msi> /quiet /norestart" and then check %errorlevel% …

powershell return-value exit-code windows-installer
Why does my Perl script exit with 137?

Is there a way to eliminate a warning (exit code 137) in perl? I am running a Perl script on linux …

perl exit-code
What are the error exit values for diff?

On the diff man-page I've found these exit values: 0 No differences were found. 1 Differences were found. >1 An error occurred. …

bash shell diff exit-code
Why am I seeing multiple "The thread 0x22c8 has exited with code 259 (0x103)." messages

I'm getting a slew of these messages in my Winforms application even though I never explicitly made any threads. Why …

c# multithreading visual-studio exit-code
Meaning of Exit Code 11 in C?

What's the general meaning of an exit code 11 in C? I've looked around and can not find a definitive answer …

c segmentation-fault exit-code
How to capture the Return Value of a ScriptBlock invoked with Powershell's Invoke-Command

My question is very similar to this one, except I'm trying to capture the return code of a ScriptBlock using …

powershell return-value exit-code windows-scripting invoke-command
Java exit codes and meanings

Is there a list of exit codes and meanings for java process terminations? Because I have an exit code 23 and …

java process exit-code
Eclipse crashes at startup; Exit code=13

I am trying to work with Eclipse Helios on my x64 machine (Im pretty sure now that this problem could …

java eclipse jdk1.6 exit-code
How do you capture stderr, stdout, and the exit code all at once, in Perl?

Is it possible to run an external process from Perl, capture its stderr, stdout AND the process exit code? I …

perl stdout exit-code
Get error code from within a batch file

I have a batch file that runs a couple executables, and I want it to exit on success, but stop …

windows batch-file exit-code