Hi guy's
I have a batch file which return's me the string output
I success to execute the batch file from C#.Net, but unable to capture return value, I need that return string to be use in rest of my application
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = "S:\\Sadad_Link\\CMD\\Getuuid.bat";
proc.Start().ToString();
This is how i execute the batch file, but for capturing return value i check all the properies for "proc" with no reasult
I will really appreciate, if somebody helps me out
Thank's in advance
Regrad
Hameed