ProcessStartInfo psi = new ProcessStartInfo();
psi.CreateNoWindow = false;
psi.UseShellExecute = false;
psi.FileName = "convert.exe";
psi.WorkingDirectory = @"C:\Users\Der\Downloads\Wunderground_API_Test\Wunderground_API_Test\Wunderground_API_Test\";
psi.Arguments = " icone.gif -fuzz 10% -transparent white icone.ico";
Process.Start(psi);
If I try to run this nothing happens but if go to that path and type convert.exe icone.gif -fuzz10% -transparent10% white icone.ico
it works. What am I doing wrong?