Trying to change the cmd window colors. this does not work?
ProcessStartInfo p1 = new ProcessStartInfo();
p1.Verb = "runas";
p1.FileName = "cmd.exe";
p1.Arguments = "color 80";
Process.Start(p1);