I need to start a complete command line like \"app.exe /arg1:1 /arg2:true\" from my C# app.
Process.Start and ProcessStartInfo needs to have the filename and argumen
Yes, you can launch cmd.exe with the full command-line you want to send as the arguments.
cmd.exe
info.FileName = "cmd.exe"; info.Arguments = "app.exe /arg1:1 /arg2:true";