How to open .EXE with Javascript/XPCOM as Windows “Run…”?

送分小仙女□ 提交于 2019-12-19 04:50:16

问题


I have an intranet web application who needs to run some external applications, like Word, Notepad and other particular ones... My code allow the access with IE (ActiveX) and Firefox (XPCOM). When I use the whole path (like "C:\windows\notepad.exe") I can run in both browses, but y problem is: there's a lot of versions for some applications like Microsoft Word (2003, 2007, 2010...), and the local path is always different, BUT if I use the "Run..." option in Windows, I can only type "winword.exe" and MS Word loads, besides it's version. If I pass only the filename to ActiveX in IE, I'm able to call MS Word, but in Firefox, with XPCOM, I'm not. So, my question is: Is there any way to make the XPCOM code run MS Word just with it's relative path (filename)? I've tested a whole of ways but without success.

Here's my code:

function RunExe(path) {
    try {            
        var ua = navigator.userAgent.toLowerCase();
        if (ua.indexOf("msie") != -1) {
            MyObject = new ActiveXObject("WScript.Shell")
            MyObject.Run(path);
        } else {
            netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");

            var exe = window.Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
            exe.initWithPath(path);
            var run = window.Components.classes['@mozilla.org/process/util;1'].createInstance(Components.interfaces.nsIProcess);
            run.init(exe);
            var parameters = [""];
            run.run(false, parameters, parameters.length);
        }
    } catch (ex) {
        alert(ex.toString());
    }
}

And the call has been made like this:

 <a href="#" onclick="javascript:RunExe('winword.exe');">Open Word</a>

Any help would be appreciated. Thank you.


回答1:


I believe your problem lies in the fact that IE directly works with Windows where as Firefox is intended to be cross-platform. Assuming you only want this to work on Windows, you could execute the command prompt

    C:\Windows\System32\cmd.exe

and pass it an argument like

    start winword.exe

Then it will perform in the same manner as Run.



来源:https://stackoverflow.com/questions/6177583/how-to-open-exe-with-javascript-xpcom-as-windows-run

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!