how to run exe file using javascript
Please help me to run a exe file using JavaScript and the file must be open on browser window inside any div tag.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vincent Maverick DuranoPosted May 2, 2015, 2:02 AM
You can't run an executable on the client's machine /browser directly. If this were possible it would have some very serious security implications. To run an executable on a client machine you need to have a look at one of the following technologies:
XBAPs: Probably the best for what you want: http://msdn.microsoft.com/en-us/library/aa970060.aspx
ActiveX Plugins: http://www.codeproject.com/KB/COM/CompleteActiveX.aspx
Google native client: http://code.google.com/p/nativeclient/
Java Applets: http://java.sun.com/applets/
Er Sanjeev KumarPosted May 6, 2015, 2:25 PM
Vincent Maverick DuranoPosted May 3, 2015, 4:28 AM
Er Sanjeev KumarPosted May 3, 2015, 3:49 AM
Vincent Maverick DuranoPosted May 2, 2015, 2:03 AM