var cmdstring = "explorer Shell:::{4234d49b-0245-4df3-b780-3893943456e1}";
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = @"cmd.exe";
process.StartInfo = startInfo;
process.Start();
做你需要做的最简单的方法是这样的:
所以或
如果您需要与流程进行更多交互。
如果运行
cmd
,则需要一个键/c
(并且需要将命令与参数分开):