c# execute command line silent code example

Example: c# execute command line silent

Code Block
Process DProcess = new Process();

DProcess.StartInfo.FileName = "cmd.exe";

DProcess.StartInfo.Arguments = " /c " + command_name + " " + commandArguments;

DProcess.StartInfo.UseShellExecute = false;

DProcess.StartInfo.CreateNoWindow = true;

DProcess.StartInfo.LoadUserProfile = true;

DProcess.StartInfo.RedirectStandardError = true;

DProcess.StartInfo.RedirectStandardInput = true;

DProcess.StartInfo.RedirectStandardOutput = true;

DProcess.Start();