javascript - launch an application from browser with parameters (cross browser) -


i trying launch application webpage parameters. activex shown below works @ ie.

myobject = new activexobject( "wscript.shell" );   myobject.run('"c:\\program files\\application.exe" -guiparm=".." -system=..-client=..-user=.. -pw=..');  ` 

is there other way cross browser?

thank help

you can use following:

<a href="c:\windows\notepad.exe"  type="application/octet-stream">launch notepad</a> 

from remember using file:// blocked chrome , firefox. don't know how send parameters @ least can launch application without using activexobject.


Comments