I have developed a utility which will get time of all servers in the list.
System.Diagnostics.Process p;
string server_name = "";
string[] output;
p = new System.Diagnostics.Process();
p.StartInfo.FileName = "net";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StandardOutput.ReadLine().ToString()
While executing this code. Cmd prompt screens are coming. I want to hide it from the user. What can I do for it?