I'm having a difficult time getting Process.start
to acknowledge that Java exists, even when I use an absolute path.
Process.Start(@"c:\windows\system32\java.exe");
produces
Unhandled Exception: System.ComponentModel.Win32Exception: The system cannot find the file specified at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start() at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(String fileName) at Transpiler.Program.Main(String[] args) in C:\GIT\MainLine\transpiler2\Program.cs:line 80
Even though java.exe does exist at that location.