如何从jsp中找到安装程序路径?

时间:2018-05-09 08:56:59

标签: javascript html5 internet-explorer activexobject ocx

当用户访问我的网站并单击按钮时,我想启动Postman.exe。所以我必须找到Postman安装路径。我已经使用ocx和regedit commond来找到安装路径。但是如果程序不要将信息写入注册表,如何查找和启动程序?我可以使用bat命令吗?

function exec () {  
var command;  
var shell = new ActiveXObject("WScript.Shell"); 
try
{
    command = shell.RegRead("HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\shell\\RadiAnt\\Icon");
}
catch(e)
{
    if(window.confirm("你可能还没有安装Radiant,请下载安装")){
        //alert("确定");
         window.location.href="jspView/radiantsetup32312921.exe";
         return false;
     }else{
        return false;
    }
}//执行exe程序
    window.oldOnError = window.onerror;  
    window._command = command;  
    window.onerror = function (err) {  
  if (err.indexOf('utomation') != -1) {  
    alert('命令' + window._command + ' 已经被用户禁止!');   
    return true;  
   }  
   else return false;  
 };  
 var wsh = new ActiveXObject('WScript.Shell');  
 if (wsh)  
 wsh.Run("\""+command); 
 window.onerror = window.oldOnError;
}  

0 个答案:

没有答案