I'm starting a process with ProcessStartInfo, the process is started but is not able to access to any directory. If I start the same process manually, everything is working normally.
var processStartInfo = new ProcessStartInfo();
processStartInfo.WindowStyle = ProcessWindowStyle.Normal;
processStartInfo.WorkingDirectory = pathFileGestioneMacchine;
processStartInfo.Arguments = "A";
processStartInfo.FileName = nomeExeAggiornaMacchine + ".EXE";
//processStartInfo.UseShellExecute = true;
processStartInfo.Verb = "runas";
Process procStart = new System.Diagnostics.Process();
procStart.StartInfo = processStartInfo;
procStart.Start();