Is it possible to write to the windows dos screen and display the results in a GUI?
eg;
Console.WriteLine("ipconfig");
Thread.Sleep(1000);
for (int i = 0; i < 5; i++)
{
textBox1.Text = Console.ReadLine().ToString();
}