I tried to open a program using this code:
<head>
<title></title>
<script language="javascript" type="text/javascript">
function run() {
var shell = new ActiveXObject("WScript.shell");
if (shell) {
shell.run('"C:\\Program Files (x86)\\BitTorrent\\BitTorrent.exe"', 1);
}
else
{ alert("BitTorrent is not installed on your system."); }
}
</script>
</head>
<body onload="run()">
</body>
</html>
But it doesn't work. Any help, please?

BitTorrentisn't installed in yoru system ifActiveXfails to instantiateWScript.shell