string Commands = @"cmd.exe /c cd c:\mongodb\bin";
Process cmd = new Process();
cmd.StartInfo.FileName = "cmd.exe";
cmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
cmd.StartInfo.Arguments = Commands;
cmd.Start();
cmd.WaitForExit();
Process cmd = new Process();
cmd.StartInfo.FileName = "cmd.exe";
cmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
cmd.StartInfo.Arguments = Commands;
cmd.Start();
cmd.WaitForExit();
No comments:
Post a Comment