javascript - Call exe file in web project using ActiveXObject -
when run 'test.exe' under web project using activexobject, ie gave below error message -
"the system cannot find file specified."
here sample coding
function runexe(){ w = new activexobject("wscript.shell"); var ex =w.exec('test.exe'); var ret = ""; //read output of jar while (!ex.stdout.atendofstream) { ret += ex.stdout.readline(); } return true; } here project structure.

can give me suggestions?
you request "text.exe", executable named "test.exe".
Comments
Post a Comment