Hi i am using ActiveXObject to execute an exe file but it is working in only IE. IS there any thing that works in all browsers.
<script>
function LaunchApp() {
if (!document.all) {
alert ("Available only with Internet Explorer.");
return;
}
var ws = new ActiveXObject("WScript.Shell");
ws.Exec("C:\\Program Files\\Xyz.exe");
}
</script>