i have the following problem:
My programm executes a command line command which starts a different programm and passes some parameters.
Once the other programm is done, it opens a cmd-window, which only contains a status message. (like "no errors" or "completed task but some errors were encountered"
what I want to do now is:
get the message from the new cmd window. (The other programm has a variable execution time. It might take seconds or minutes for the cmd window to appear.)
create a pop up window in the form of a message box that contains the message.
close the new cmd window
I managed to get the output of a cmd window that I started in my programm with process.StandardOutput.ReadToEnd()
but I couldn't find a way to get the output of an external cmd window
I hope you can help me.