INTERACT FORUM
More => Old Versions => JRiver Media Center 21 for Windows => Topic started by: DoubtingThomas on February 04, 2016, 06:11:26 pm
-
I use MC21.exe extensively, and I like to check the return codes. As shown in the examples, I get either a 0 or 1 and I would expect a 0 on success. All MC21.exe calls in the examples, produce the expected results.
Do the return codes from MC21.exe have meaning? Is there a problem in the MC21.exe code that is not returning the correct return code?
c:\>mc21 /command pause
c:\>echo %ERRORLEVEL%
0
c:\>mc21 /mcc 10022,1
c:\>echo %ERRORLEVEL%
1
-
The return codes don't really have a meaning, sorry. What it returns depends on some internal processing and which code is used, but it's not a generic fail or success.
-
The return codes don't really have a meaning, sorry. What it returns depends on some internal processing and which code is used, but it's not a generic fail or success.
Thank you for the reply. I'll remove the return code check from my calling code.