Currently my console application can return Integer values from the console application via "ExitProcess" Kernel32 function.
Public Declare Sub ExitProcess Lib "kernel32" (ByVal uExitCode As Long)
How to return string values from Console application to Batch file.
I would like to return string values like "Successfully transformed 100 batches..." etc.