Das ist alles, was Sie tun müssen, um Shell-Befehle von C# aus auszuführen
string strCmdText;
strCmdText= "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);
EDIT。
Damit wird das cmd-Fenster ausgeblendet.
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
process.StartInfo = startInfo;
process.Start();
EDIT: 2
Wichtig ist, dass das Argument mit /C
sonst wird es nicht funktionieren. Wie Scott Ferguson sagte: "Führt den durch die Zeichenkette angegebenen Befehl aus und beendet sich dann."