I tried some code like this:
<script type="text/javascript" language="javascript">
function RunFile() {
var shell = new ActiveXObject("WScript.Shell");
shell.Run("Installer/aldous/setup.exe", 1, true);
alert("clicked");
}
</script>
<button class="button" value="Application Installer" onclick="RunFile()">Application Installer</button>
to run my exe file but it does not work. How could I run the setup of my application through javascript?