<t>voici tout ce que vous devez faire pour exécuter des commandes shell depuis C#<br/>
<br/>
string strCmdText;<br/>
strCmdText= "/C copy /b Image1.jpg + Archive.rar Image2.jpg";<br/>
System.Diagnostics.Process.Start("CMD.exe",strCmdText);<br/>
<br/>
```<br/>
<br/>
**MODIFICATION :**<br/>
<br/>
Ceci permet de masquer la fenêtre cmd.<br/>
<br/>
```<br/>
System.Diagnostics.Process process = new System.Diagnostics.Process();<br/>
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();<br/>
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;<br/>
startInfo.FileName = "cmd.exe"