installations af eksterne programmer fra eget install tool
Hej!Hvordan kan jeg installere eksterne programmer fra mit eget install tool.
Jeg har forsøgt mig med process, men jeg får at vide at filen ikke findes.
Process process = new Process();
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.CreateNoWindow = false;
process.StartInfo.FileName = filename;
process.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory() + "\\Software\\";
process.Start();
Hvad kan jeg ellers gøre?
