In windows Runtime.exec does not find the file to execute. It says could not find the file specified.
I am doing Runtime.exec("myprogram"). Its localted under PATH variable.
Is there a setting in Windows which disables exec ing of files without the ".exe" specified?
If I specify Runtime.exec("myprogram.exe"), is there any chance of this program running fine?
I know that this is a very strange question, but I am hoping somebody who understands the security features in Windows can throw some light.
.exeextension for Windows to recognize the file as an executable (Windows looks for the Portable Executable header inside the file itself for that). Try doingRuntime.exec()with the full absolute path tomyprograminstead of the relative path and see if it works. If it does, check yourPATHvariables to see if it is configured properly. – In silico Aug 19 '11 at 6:32.exeextension (.cpl,.dll,.ocx,.sys,.scr,.drv). – In silico Aug 20 '11 at 11:07