Hi!

I am trying to run a program from a c# app.

To run properly the the program needs some flaggs appended to it.

right now I have the following:

Code:
System.Diagnostics.Process proc = new System.Diagnostics.Process();
            proc.EnableRaisingEvents = false;
            proc.StartInfo.FileName = "fbboot";
            proc.Start();
...