I want to run lmutil.exe with the arguments -a, -c, and 3400@takd, then put everything that command line prompt generates into a text file. What I have below isn't working.

If I step through the process, I get errors like "threw an exception of type System.InvalidOperationException"

        Process p = new Process();
        p.StartInfo.FileName = @"C:\FlexLM\lmutil.exe";
        p.StartInfo.Arguments = "lmstat -a -c 3400@tkad>Report.txt";
        p.Start();
        p.WaitForExit();

All I want is for the command line output to be written to Report.txt

link|improve this question

80% accept rate
What about a space between 3400@tkad and >Report.txt? – Ash Burlaczenko Jan 4 at 18:24
also what is the > for in the 34000@tkad – DJ KRAZE Jan 4 at 18:25
Filename = "cmd.exe", Arguments = "/c c:\flex..yadayada > Report.txt" – Hans Passant Jan 4 at 18:35
a space doesn't help, and the > is to denote that it is supposed to copy the output into the text file – Brandon Jan 4 at 18:36
feedback

2 Answers

up vote 2 down vote accepted

To get the Process output you can use the StandardOutput property documented here.

Then you can write it to a file:

Process p = new Process();
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = @"C:\FlexLM\lmutil.exe";
p.StartInfo.Arguments = "lmstat -a -c 3400@tkad";
p.Start();
System.IO.File.WriteAllText("Report.txt", p.StandardOutput.ReadToEnd());
p.WaitForExit();
p.Close();
link|improve this answer
1  
Okay, but then remove `>Report.txt' from the arguments. – Hans Passant Jan 4 at 18:33
This is working. I had thought it would put it in the directory of lmutil.exe. Instead its in the bin folder of the c# program I'm running. Thank you – Brandon Jan 4 at 18:47
feedback

You can't use > to redirect via Process, you have to use StandardOutput. Also note that for it to work StartInfo.RedirectStandardOutput has to be set to true.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.