I want to run a client side exe by using Javasript.
I tried the below code .. it works fine in IE.
Code:
function myFunction(){
WshShell = new ActiveXObject("Wscript.Shell");
WshShell.run("C:\\Windows\\System32\\notepad.exe");
}
but i want to work that code in Chrome.
I have search this thing in Google and found we can access the client side files by using NPAPI plugin
can any one give me a idea about this
Where to download..? and what is the JScript code for NPAPI plugin to run the EXE.?
Note : Please don't comment like "this is Security violation" OR "you are not suppose to do this".
My application is Intranet application and my exe is known EXE so please help me on this.